New Post: How to read CCITTFaxDecode Group 4 image
I am having problems with one of my unit tests that is failing with the latest ImageMagick code. And I cannot figure out why it fails at the moment. This means that I cannot publish a new release at...
View ArticleNew Post: How to read CCITTFaxDecode Group 4 image
Thanks for keeping me informed Dirk :-) Martin
View ArticleNew Post: How to read CCITTFaxDecode Group 4 image
After 3 days of tracking down the issue I found the bug yesterday night. It was a bit to late to publish a new release then so I had to do it today after work. I just published a new release that has...
View ArticleNew Post: How to read CCITTFaxDecode Group 4 image
Hi Dirk, Thanks so much for your hard work :-) I'm exploring it and the samples (convertpdf, detaileddebuginformation) to determine required readersettings. Thanks again Martin
View ArticleNew Post: How to read CCITTFaxDecode Group 4 image
Hi again, I've got some questions... I wanted to get some reassurance that imagemagick has good coverage of the images types in my pdfs. So I took a typical pdf, and ran the convertpdf sample over it....
View ArticleNew Post: How to read CCITTFaxDecode Group 4 image
Hi Dirk, I've got some memory leaks, so I'm going to get on top of those before any more image decoding work. Thanks Martin
View ArticleNew Post: How do I turn on OpenCL
I must be missing something, I can't turn on OpenCL. I saw a mention to use MagickNET.UseOpenCL = true; but that's not possible with the latest version v7.1 I'm not using Magick.NET.Web as this is a...
View ArticleNew Post: How do I turn on OpenCL
You will need to use the new OpenCL class if you want to enable/disable OpenCL. You can also use the class to get information about the OpenCL devices.
View ArticleNew Post: How to convert TIF to Black-and-White Monochrome TIF
Hi! I would like to use Magick.NET https://magick.codeplex.com/wikipage?title=Convert%20image&referringTitle=Documentation in order to convert TIF to Black-and-White Monochrome TIF but manual does...
View ArticleNew Post: How to convert TIF to Black-and-White Monochrome TIF
The UseMonochrome option is only support by PCL, PDF, PS and XPS so that option doesn't do anything. I just modified the comment to clarify this. Can you share an input image that becomes completely...
View ArticleNew Post: .NET Core 1.0 RTM compatibility
Hi, When Magick.NET will be .NET Core 1.0 RTM compatible, please? Thx, Ivan
View ArticleNew Post: .NET Core 1.0 RTM compatibility
Have you tried using the latest Magick.NET.Core library? I have changed my project.json files last night but I am not sure if I need to publish a new release to make it compatible with .NET Core 1.0...
View ArticleNew Post: .net core on linux
I am planning to give it a try this summer. I still don't have an exact date when I will start on it though.
View ArticleNew Post: Rebuild for Q16-HDRI-AnyCPU Errors
Hi, One of the benefit of making the MagickImage Class serializable is that we can put the MagickImage object into caches over network. we can put them in the in process cache but when you have more...
View ArticleNew Post: Disable the HDRI in Version 7
Hi, I recently updated my Magick.net from version 6 to 7 and read that in new version the HDRI is enabled by default how is possible to disable this fuctionality. I am using Magick.net in C#.
View ArticleNew Post: Disable the HDRI in Version 7
Normally it would indeed enable HDRI by default but I made sure this will only happen when you get the Q16-HDRI version of Magick.NET. When you use the Q8 or the Q16 version you will not have HDRI...
View ArticleNew Post: Rebuild for Q16-HDRI-AnyCPU Errors
Thank for Meys57, I used MIFF file format to solving my problem :)
View ArticleNew Post: Using Magick.NET for making PNG background transparent
Hi guys, I used convert.exe in a batch to create transparent PNG files. The parameters have been worked out after running lots of test. convert.exe [inputfile] ( +clone -colorspace HSB -channel...
View ArticleNew Post: Using Magick.NET for making PNG background transparent
That is possible and your command would translate to this:using (MagickImage image = new MagickImage("wizard:")) // [inputfile] { MagickImage green; using (MagickImage first = image.Clone()) // +clone...
View Article