New Post: Read Pdf image using Magick.NET-x86.dll, StackOverflow exception?
Replied the same way, sorry for the delay.
View ArticleNew Post: Read Pdf image using Magick.NET-x86.dll, StackOverflow exception?
I replied to the messages from CodePlex, you should have an e-mail from me in your gmail account. Once more, thank you for helping me figure out what is going on.
View ArticleNew Post: Read Pdf image using Magick.NET-x86.dll, StackOverflow exception?
With the help of kirbam I was able to find the bug that was introduced in Magick.NET 7.0.0.0010. I will publish a new release very soon to fix this problem.
View ArticleNew Post: Multilayer psd, png with transparency displayed with errors/wrong...
Thanks for the fast fix, i've just tried the .12 release and it's working fine.
View ArticleNew Post: Read Pdf image using Magick.NET-x86.dll, StackOverflow exception?
Thank you for getting back to me, however I was pressed for time to find a resolution, so had to use a different library.
View ArticleNew Post: Is there a way to read photo after CRC error?
I have several photos that generate PNG CRC error:ImageMagick.MagickCoderErrorException: IDAT: CRC error `' @ error/png.c/MagickPNGErrorHandler/1650 --->...
View ArticleNew Post: Is there a way to read photo after CRC error?
I just checked the PNG coder in ImageMagick and it turns out I could possibly tweak it to 'return an image' when an error has occurred. I will have to talk about this with the rest of the team first. I...
View ArticleNew Post: Is there a way to read photo after CRC error?
Thanks! Maybe this kind of "ignore CRC Errors" shouldn't be a default behavior and should be specified as option via MagickReadSettings.
View ArticleNew Post: Convert bmp/jpg file into grayscale 8bit
I need to convert 24bit bmp/image picture into 8 bit grayscle image. Can any body help me out. Regards Munir
View ArticleNew Post: Convert bmp/jpg file into grayscale 8bit
You can do this by setting the color type to GrayScale:using (MagickImage logo = new MagickImage("logo:")) { logo.ColorType = ColorType.Grayscale; logo.Write(@"C:\logo.png"); }
View ArticleNew Post: Is there a way to read photo after CRC error?
In the new version of Magick.NET that has just been published you will be able to do read the image even though it is corrupt. You can do that with the new class PngReadDefines. Below is an example:...
View ArticleNew Post: Achieve Dragan Effect On Image Using Magick.Net
Hi I am trying to achieve the dragan effect on an image (ref: http://www.fmwconcepts.com/imagemagick/draganeffect/index.php) using Magick.Net API. Does anyone know how can I achieve that?
View ArticleNew Post: Achieve Dragan Effect On Image Using Magick.Net
You will have to translate the script that Fred created. I am working together with Fred on a project to translate all his scripts: https://github.com/dlemstra/FredsImageMagickScripts.NET. That script...
View ArticleNew Post: Achieve Dragan Effect On Image Using Magick.Net
Thanks for the response. Do you know by when you would be able to churn this out? :) I am new to Image Magick so not sure how to translate the PHP script to Magick.Net. Although I need it pretty quick...
View ArticleNew Post: Achieve Dragan Effect On Image Using Magick.Net
The only way to achieve this is by translating the script. I might be able to add that script this weekend. Unlike this project those files will have a commercial license. You will have to contact Fred...
View ArticleNew Post: Achieve Dragan Effect On Image Using Magick.Net
Ok great. Can you please let me know once you are able to translate the scripts onto Magic.Net. I will then contact you for commercial license.
View ArticleNew Post: Issues with reading EPS image after upgrading to 7.0.0.0013
Hi, after upgrading from 7.0.0.0009 to 7.0.0.0013 my EPS image becomes blank. I use iTextSharp to generate a PDF, and until now I got a page with text and an Image. This is my code for reading the...
View ArticleNew Post: Issues with reading EPS image after upgrading to 7.0.0.0013
It looks like the execution of Ghostscript fails. Can you provide me with some detailed debug information? You can find information on how to get that here:...
View ArticleNew Post: Issues with reading EPS image after upgrading to 7.0.0.0013
dlemstra wrote: It looks like the execution of Ghostscript fails. Can you provide me with some detailed debug information? You can find information on how to get that here:...
View Article