New Post: Issue with composited png
Thanks a lot for the help dlemstra! Great library and super helpful.
View ArticleNew Post: Losing transparency with CMYK
The next release will probably be at the end of January.
View ArticleNew Post: Issue with Scale() method
On some images (i think since version either 7... 7 or 7...8), when doing a .Scale() I get corrupted result like this:http://prntscr.com/5l32q0 Here's the original image: http://i.imgur.com/yskoPW9.jpg...
View ArticleNew Post: Issue with Scale() method
This is probably another bug in the ScaleImage method of ImageMagick. I will take a look at it later tonight.
View ArticleNew Post: .Write() crashes application
dlemstra wrote: Can you not reproduce the issue on your local machine? Getting a crash dump will help to really fix the problem. It would also help if you can provide me with a really small sample...
View ArticleNew Post: Tif separations
Is it possible to create images (tifs) for each separation (CMYK and spots) using Magick.Net? I can do this directly with GhostScript, but just wondering if there is any wrapper for this via Magick.Net
View ArticleNew Post: Tif separations
Magick.NET/ImageMagick only reads the CMYK channels from files with Ghostscript spot colors are ignored. Are you using a PDF/EPS?, I was thinking about adding support for files that have extra spot...
View ArticleNew Post: CompositeOperator enum
Thanks, I see you released an update so I hope to get back and give this a try this week.
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Hi, I faced the same issue and tried this suggestion - But it didnt work and am now stuck here hosting my site in GODADDY. Any help will be really really appreciated please .
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Can you explain 'does not work' in more detail? Are you getting an exception? And are you using the .NET 4.0 version of Magick.NET?
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Hi - Please find more details on the error. What I'm doing - editing an image and saving to a location Am using Magick.NET-AnyCPU.dll in my code, but in the error its mentioning...
View ArticleNew Post: Using Magick.NET without installing VS 2012 C++ Redistributable EXE
Can you switch to the x86 of Magick.NET and not use the AnyCPU version? The AnyCPU version has the x86 assembly as an embedded resource and writes this to a temporary file. That location will not have...
View ArticleNew Post: ImageMagick.MagickDelegateErrorException
Hi everybody, I have a problem. Code; { using (var list = new MagickImageCollection()) { list.Read(file); for (int id = 0; id < list.Count; id++) { using (MagickImage image = new MagickImage()) { //...
View ArticleNew Post: ImageMagick.MagickDelegateErrorException
Magick.NET uses Ghostscript to read PDF files and it seems that this file cannot be read by Ghostscript. Can you add a link to your file? This might be a bug in Ghostscript. And why are you reading the...
View ArticleNew Post: ImageMagick.MagickDelegateErrorException
http://we.tl/ONFTLxk3NP --> this is my pdf file And error; An unhandled exception of type 'ImageMagick.MagickDelegateErrorException' occurred in Magick.NET-x86.dll Additional information:...
View ArticleNew Post: ImageMagick.MagickDelegateErrorException
Are you using the latest version of Ghostscript?
View ArticleNew Post: ImageMagick.MagickDelegateErrorException
I am also using 9.15 and I can process the image without any problems. Is it possible that you have two versions of Ghostscript installed (x86 and x64)? Maybe Magick.Net/ImageMagick is using another...
View ArticleNew Post: SetDefine Options for the JP2000 encoder not works
Hello, i will convert a image file to a J2K file and will set some encoder options, but the settings not working.... i have set this settings, image.SetDefine(MagickFormat.J2k, "cblkwidth", "32")...
View ArticleNew Post: SetDefine Options for the JP2000 encoder not works
ImageMagick uses the name of the 'coder' as the suffix for the options. In this case the coder is not J2K but JP2. So you should use MagickFormat.Jp2. I don't know where you found those options but...
View Article