New Post: NoDecodeDelegateForThisImageFormat exception
You can find the repository here: http://git.imagemagick.org/
View ArticleNew Post: Magic.Net
Only the first layer from the PSD / TIF file will be read when you create a MagickImage. The whole file will be read if you create a MagickImageCollection.// Only the first frameusing (MagickImage...
View ArticleNew Post: Extract logo from the images
Hi, I am trying to get rid of the background color of the image and extract the logo in that image. Sample image looks like I tried with code using (MagickImage image = new...
View ArticleNew Post: NoDecodeDelegateForThisImageFormat exception
If you 'pull' the latest version you can run Checkout.cmd again.
View ArticleNew Post: Extract logo from the images
You are only replacing colors that have the exact same color as the pixel at 1,2. If you want to get colors 'close' to that you need to set the ColorFuzz of the image. For this image setting it to 10%...
View ArticleNew Post: Image Compare in C# is returning erroneous results for matching...
I'm using Magick.NET with C# and using Selenium to take browser screenshots and then compare them to reference images (also taken by Selenium) and return the percent match between the two. If they are...
View ArticleNew Post: Image Compare in C# is returning erroneous results for matching...
When you use ErrorMetric.Undefined you are actually using ErrorMetric.NormalizedCrossCorrelation. You can find an explanation about the different error metrics here:...
View ArticleNew Post: Force Ghostscript to load all fonts
I'm using Magick.NET-Q16-HDRI-AnyCPU and I'm setting the gs directory in code and pointing at gsdll32.dll. The project is an asp.net site. I'm generating a png from a PDF with some custom fonts. I've...
View ArticleNew Post: Image Compare in C# is returning erroneous results for matching...
Thank you for sending me those images. You are getting this odd value because you are comparing images that have different dimensions. This means that the smaller image will get so called 'virtual...
View ArticleNew Post: Force Ghostscript to load all fonts
You can modify the Ghostscript options inside the delegates.xml file. Copy all the xml files from the following directory: %TEMP%\Magick.NET.7.0.0.00XX to your own directory. Then edit the...
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
using (MagickImage image = new MagickImage()) { image.SetDefine(MagickFormat.Tiff, "ignore-tags", "32934"); image.Read(sourceFilePath);; image.Write(targetFilePath); } image.Read() throws...
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
Can you share your input image so I can reproduce this? Feel free to contact me through CodePlex if you don't want to share your image publicly. And what is the message of the MagickCoderErrorException?
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
Here's a temporary link to the tiff I am converting.https://drive.google.com/file/d/0BxzqjxKnVWVVUXZCRTNPRkl2V0E/view?usp=sharing Message of MagickCoderErrorException: ImageMagick.vshost.exe:...
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
I can reproduce this issue. It seems the check in ImageMagick no longer works. Can you allow me to use your image in a unit test to make sure this feature will keep working?
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
Certainly, thanks for addressing the issue promptly. Please update me once the feature is working again.
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
I will try to publish a new release this weekend. If you follow me on twitter you will get a tweet when I publish a new release. I can also e-mail you once the release has been published (I will get...
View ArticleNew Post: MagickCoderErrorException but I have ignored the warning tag
And to answer your other question we don't have plans to change to a newer PDF format at the moment. This will allow older software to open the PDF files that we create. It might also be interesting...
View ArticleNew Post: Multipage PDF to ONE MULTIPAGE (!!!) Tiff
Hello everyone, my c# Code manages to create many tiff-files out of a multipage pdf. So far, so good, now I need a way - as an option - to create one multipage tiff (yes, one tiff file with MANY...
View ArticleNew Post: System.TypeInitializationException: The type initializer for ''...
I would like to convert pdf to png. It is working on my developer computer, but when i deploy to the server, i always get an exception. I'm using x64 version and ghost script 9.06. The VC Redist 2012...
View Article