New Post: How to improve the performance of Image conversion
EMF images are vector images so that is why you need to set the density to get a high quality image. But with the EMF format there is an extra feature. You can set the width and height to the desired...
View ArticleNew Post: How to improve the performance of Image conversion
dlemstra wrote: EMF images are vector images so that is why you need to set the density to get a high quality image. But with the EMF format there is an extra feature. You can set the width and height...
View ArticleNew Post: Pango Caption Bugs with Escaping and Long Text
I noticed that Pango is truncating a long text string to around 4000 characters. If this is related to what your experiencing, are there any ways to increase this limit?
View ArticleNew Post: Pango Caption Bugs with Escaping and Long Text
Thanks for your response adriangatto! It seems that you found a bug (missing feature) in the Magick.NET code. When reading "pango" the content is stored in a buffer that can only hold 4096 characters....
View ArticleNew Post: Convert MagickImage to XPS
Hello, I am trying to convert a MagickImage object to an XPS format.MagickNET.SetTempDirectory(@"D:\temp"); MagickNET.SetGhostscriptDirectory(@"D:\GhostScriptLib"); MagickImage img = new...
View ArticleNew Post: Magick.NET.web
I saw the documentation on Magick.NET.web. It looks to be for using with web sites, but I'm not sure how it helps. Do you have any samples or examples to illustrate how it would be used?
View ArticleNew Post: Convert MagickImage to XPS
Only reading XPS is supported. You cannot write a xps file. You probably want to use another library for this.
View ArticleNew Post: Magick.NET.web
You can use that library that can help you create an url like this: /images/yourfile.800x600.jpg. With the help of the an IUrlResolver you can resize images on demand. It might be good to have an...
View ArticleNew Post: Text Height, Letter Spacing
I am another newbee to Magick.Net. Great job! I think adding FontTypeMetrics to Drawables is a good idea. I am trying to draw a stamp on the back of a TIFF with centered text. In the mean time how do...
View ArticleNew Post: Text Height, Letter Spacing
By settings I mean the 'Settings' property of a MagickImage object. Would you mind opening an issue on github to request me to add font type metrics to the Drawables? Have you tried to use text...
View ArticleNew Post: FileSize zero after Blur and ReduceNoise
Is ToByteArray "expensive"? What we really care about for the application is the size in bytes, and candidate code for that is ToByteArray().Length. if (resizeParameters.SizeMaximumBytes.HasValue...
View ArticleNew Post: FileSize zero after Blur and ReduceNoise
ToByteArray encodes the image and returns the bytes. You should not do this multiple times without changing the image. You could call the method like you do now but preserve the result and write that...
View ArticleNew Post: strech image to fill the transparent background using imagemagick.net
I have an image(attached). I want the image to be streched out to cover the yellow area. I am using c#, magick.net What will be the best approach?
View ArticleNew Post: strech image to fill the transparent background using imagemagick.net
I hope I am understanding you correctly but it looks like you want to extent the image with a transparent background. You can use the Extent method of MagickImage for this.
View ArticleNew Post: strech image to fill the transparent background using imagemagick.net
The size of the image including yellow area is 1741x2005. While applying extent what should I pass as width & height of the image so that the image extends and covers the yellow area. Following is...
View ArticleNew Post: Support for Google's image compression
Google has just released a JPEG optimizer that claims to reduce JPEG files by 35%https://github.com/google/guetzli/ Would it be possible to add support for it directly from within the save process of...
View ArticleNew Post: Append multiple rows of images
I have a string array where each element should be a line in my output image. For example string[] input= new string[2] {"Hello", "World"}; I need to iterate on this array and create an output image...
View ArticleNew Post: strech image to fill the transparent background using imagemagick.net
Can you show me a before and after picture so I can understand what you want to do?
View ArticleNew Post: Append multiple rows of images
I am on a phone right now so I cannot create an example. Let me try it with words. What you should do is go through it line by line. Horizontal append each image and add each line to a new collection....
View ArticleNew Post: Support for Google's image compression
There was an issue about this for ImageMagick: https://github.com/ImageMagick/ImageMagick/issues/403. I dont think we will be adding this anytime soon. Might be cool to create a Guetzli.NET library...
View Article