New Post: Monochrome Option
The -monochrome option is an option for when you read an image. And that is why I added this property to the MagickReadSettings class. Below is a simple example.using (MagickImage image = new...
View ArticleNew Post: Image corruption issue
This is most likely an ImageMagick issue. We keep improving it and your version of Magick.NET 6.8.9.601 wraps ImageMagick 6.8.9-6 (released at 2014-07-25) so it is possible that this version contains a...
View ArticleNew Post: Image corruption issue
Thank you. I have repeated my conversion experiments using Magick.NET 7.0.0.0022. While the testing is not yet exhaustive, using Magick.NET 7.0.0.0022 to convert TIFF images from a check scanner into...
View ArticleNew Post: Image corruption issue
Could you add your files? This looks like a bug in ImageMagick.
View ArticleNew Post: UsingColors Example
Can anyone explain what the code is doing on this page: https://magick.codeplex.com/wikipage?title=Using%20colors&referringTitle=Documentation I'm attempting to replace a green screen background...
View ArticleNew Post: UsingColors Example
That page just demonstrates the various constructors. I am not sure how you could remove the green screen background. Maybe the following stack-overflow post will be able to help you:...
View ArticleNew Post: UsingColors Example
Thanks for the reference, but I'm looking for c# code to do this.
View ArticleNew Post: UsingColors Example
I might be able to help you if you add a link to your input image.
View ArticleNew Post: UsingColors Example
Here is a sample that I've been using: https://i.ytimg.com/vi/cjZ67rBOk-o/maxresdefault.jpg
View ArticleNew Post: combining 2 tif files very slow on win 7 32
Hello, I’m using Magick.net version Q8 to combine 2 tif files in a single page. Both images are 17518x12193 pixels with 720 dpi and LZW. My sample code is: string[] stFiles = { "input1.tif",...
View ArticleNew Post: combining 2 tif files very slow on win 7 32
I think you are running into a memory limit on Windows in the 32-bit mode. When ImageMagick cannot allocate an image it will swap to disk instead. And that will cause a major decrease in performance....
View ArticleNew Post: combining 2 tif files very slow on win 7 32
Thanks a lot for your answer! Unfortunately I can’t change images size! On both pc’s I have fast SSD so I imagine it will not affect too much the speed. It is any way to see when magick start swap to...
View ArticleNew Post: combining 2 tif files very slow on win 7 32
You should see files called magick* in your %TEMP% directory. Or you could enable debug logging (see the documentation) to see when that happens.
View ArticleNew Post: DCM support questions !
Hi ! Have you any news for me, about my two questions ? Let me known if you need other samples ... Best regards,
View ArticleNew Post: Image corruption issue
I'm experiencing a similar issue, but when converting a multi-page PDF to a series of single-page TIFFs. Some of the resulting TIFF files are blank and are noticeably smaller than the other files. Like...
View ArticleNew Post: Image corruption issue
It appears this issue has been resolved. I just tried both your example files and I can convert the images without any problems in my development build. That means this will be resolved in the next...
View ArticleNew Post: DCM support questions !
The DCM file format is not one of the easiest file formats :) I haven't had/made the time to investigate this issue.
View ArticleNew Post: UsingColors Example
I converted the example from the reference to C# but I am unable to get the result you would like. Here is my code so far:using (MagickImage image = new MagickImage("maxresdefault.jpg")) {...
View Article