New Post: Force Ghostscript to load all fonts
After much troubleshooting I was able to get my output PNG to use all the appropriate fonts. It wasn't until I told Magick.NET to start logging errors (as described here) that it suddenly worked. And...
View ArticleNew Post: Force Ghostscript to load all fonts
It sounds really strange that enabling logging solved it. That has nothing to do with Ghostscript. Maybe a reboot or a re installation of Ghostscript solved it?
View ArticleNew Post: SVG to transparent PNG
It is most likely that your svg contains a white 'fill' color. You can fix this by removing that fill color form the file with a text editor. You could also automate this.
View ArticleNew Post: PNG compression
You might also want to take a look at the Quantize method. This is what tinypng is doing according to the information on their page. They get better result for semi transparent pixels though. You...
View ArticleNew Post: Invalid IHDR data
Hello I have the next error message when trying to concat verticaly 28 files with the next resolution 524x58350. So total resolution will be 524x1633800."Invalid IHDR data...
View ArticleNew Post: Invalid IHDR data
We recently added a feature to limit the width and height of an image. The default values are too low for you. You can change them with the ResourceLimits class.
View ArticleNew Post: Invalid IHDR data
Thanks for the answer. I checked this two properties: ResourceLimits.Width ResourceLimits.Height And found out that default number for both is 10000000 what is greater than 1633800. Do I missed...
View ArticleNew Post: Can not load the file 'Magick.NET.Wrapper-x86.DLL'
I am having the same problem. Any solution found? Thanks
View ArticleNew Post: Can not load the file 'Magick.NET.Wrapper-x86.DLL'
Did you install the Visual C++ redistributable for Visual Studio 2015? This is required for the latest version of Magick.NET
View ArticleNew Post: Invalid IHDR data
I can reproduce the issue. This was changed because we upgraded the libpng library in ImageMagick. The png library also has its own internal limits. And they where lowered in the latest version. We did...
View ArticleNew Post: SVG to transparent PNG
all of my converted svg files have white background where it should be transparent. sample www.cottoncapitol.com/media/eagle.svg result : www.cottoncapitol.com/media/eagle-magick.png here's what i do :...
View ArticleNew Post: SVG to transparent PNG
You are getting a white background because that is the default background color. If you specify it before you read the image you can overrule the default. Below is an example:using (var img = new...
View ArticleNew Post: SVG to transparent PNG
i had always pass the image path in magickimage constructor. so that's why i always get white background. thanks for your reply, it really helps.
View ArticleNew Post: Suppress TIFFReadDirectory Warning Messages
When i read a Tiff Image i get the Warning poppup "unknown field flag...". How can i switch this message off? Using image As New MagickImage(input) image.Write(output) End Using
View ArticleNew Post: Suppress TIFFReadDirectory Warning Messages
Are you using the latest version of Magick.NET?
View ArticleNew Post: Invalid IHDR data
Hello. I downloaded new release of library and didn't find any issue with limits. But my application just exit wtihout reporting any error when I'm trying to merge images. It happnes on the last stage...
View ArticleNew Post: Invalid IHDR data
I will investigate it this weekend. On a trip now with a laptop that doesn't have enough disk space anymore to create this ridiculous large image.
View ArticleNew Post: Invalid IHDR data
Okay thanks :) THis images uses in the DeepZoom(like google maps) project. In any way will waiting your answer. Have a wonderful trip ;)
View Article