New Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
I agree with you that it might be better to add it as an option but that is not such an easy action to do. And it would also require the users that now expect this behavior to change their commands on...
View ArticleNew Post: No such file or directory...
Your AI file seems to be corrupt. I am getting an error from Ghostscript on the command line. I am working on fixing the error message in Magick.NET/ImageMagick. It is now showing an incorrect error...
View ArticleNew Post: ImageMagick reads/converts TrueColor TIF as Grayscale?
".. we would have to change this in all our 120+ coders" I agree with that, it would be a nightmare.“And it would also require the users that now expect this behavior to change their commands on the...
View ArticleNew Post: Nuget Version ?
Hi, when you recompiled libraries (with ImageMagick 6.8.9.0 for example), can you published it on nuget ? When do you published new version on nuget ? Regards, Frédéric O.
View ArticleNew Post: Nuget Version ?
When I publish a new release I will always publish it directly on NuGet.
View ArticleNew Post: Run error on windows servier 2008 r2
Local environment everything is normal, Deployed to a server error occurred The Winfrom Project Operating Environment Windows 2008 r2 x64 .Net4.0************** Exception Text **************...
View ArticleNew Post: Run error on windows servier 2008 r2
Did you install the Visual C++ Redistributable for Visual Studio on your production server as described here: https://magick.codeplex.com/documentation?
View ArticleNew Post: append images to output pdf file
Hi, all! first sorry my English. Magick.NET is great! but I have a little issue. this is not an issue with Magick.NET, but i can't ask it in usual programers forum, because it directly relates to...
View ArticleNew Post: Prevent OutOfMemory and other errors allowing only one to load at a...
I am trying to make an image player which should play in real time. Some images can not be loaded in 1/30 of second so I would like to skip them and load the last one in queue. Is there a way to do...
View ArticleNew Post: Prevent OutOfMemory and other errors allowing only one to load at a...
I wonder if Magick.NET is the right tool to use in a real time image player. I also don't know a good solution for the problem you are having. You should probably make an educated guess before you read...
View ArticleNew Post: append images to output pdf file
If you want to create a PDF with 300 images you will first have to read all of them in memory. You could use the Q8 instead of the Q16 version of Magick.NET to reduce the memory that is being used. You...
View ArticleNew Post: append images to output pdf file
Thank you for reply!dlemstra wrote: If you want to create a PDF with 300 images you will first have to read all of them in memory. You could use the Q8 instead of the Q16 version of Magick.NET to...
View ArticleNew Post: append images to output pdf file
This is the only way to do it with Magick.NET (ImageMagick). The pdf specifications don't allow appending to the file. Maybe you should find another tool to combine multiple images into one pdf that...
View ArticleNew Post: append images to output pdf file
Thank you for reply! I can't find such tool. so I will find another way to do required work. thanks!
View ArticleNew Post: Prevent OutOfMemory and other errors allowing only one to load at a...
Thank you. I think buffering is the way to go then. I never get any emails from codeplex. I checked the problem and I am replying you in that thread.
View ArticleNew Post: ColorProfiles not matching
Using the latest release, shouldn't the ColorProfiles match: MagickImage miSource = new MagickImage(filePath); ColorProfile cp1 = miSource.GetColorProfile(); ColorProfile cp2 =...
View ArticleNew Post: ColorProfiles not matching
You are getting a new Object every time so they will not be the same. I will have to make the ImageProfile class IComparable.
View ArticleNew Post: ColorProfiles not matching
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Convert with HoughLines
Seems pretty intuitive. I just have to learn IM a bit better. Thanks for your help. No, I wouldn't have figured out clone.SetArtifact(). Now I know.
View ArticleNew Post: Convert with HoughLines
You should not need the clone.SetArtificat(). I have fixed this in the source code of ImageMagick and in the next release of Magick.NET you can use the code from the comments.
View Article