New Post: Determine hidden alpha channels
Magick.NET cannot handle the "extra samples" but I saw that you got an answer that helped you here: https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=29606?
View ArticleNew Post: Determine hidden alpha channels
Yes that helped us with how to convert the image with these channels, but I was hoping there would be some indication from the image that told us if those channels were hidden or not. We do encounter...
View ArticleNew Post: ImageMagick Security Issue
Please upgrade to Magick.NET 7.0.1.101 to resolve the security issue. p.s. @MSwannMSFT: Is Microsoft using Magick.NET?
View ArticleNew Post: ImageMagick Security Issue
Thanks for the quick turnaround on this! Yes, we are using Magick.NET at Microsoft.
View ArticleNew Post: ImageMagick Security Issue
Can you elaborate on what you are using it for? Feel free to contact me through CodePlex if you don't want to share it publicly.
View ArticleNew Post: Get number of colors using Magick.net
The MagickImage class has a TotalColors property that you can use for this:using (MagickImage image = new MagickImage()) { image.Read("image.emf"); Console.WriteLine(image.TotalColors); }
View ArticleNew Post: Auto Enhance the image
I would like to auto enhance my picture. In image magick we can use a command like convert SourceImage.jpg -channel rgb -auto-level ResultImage.jpg What would be the equivalent code with Magick.Net...
View ArticleNew Post: Auto Enhance the image
Most command line options are methods of the MagickImage class. Next time you should check if you can find a method that has the same name as the option and give that a try. Below is a translation of...
View ArticleNew Post: impossible to work in LAB since 7.0.1.101
Ater updating the Magic.NET-Q16-AnyCPU to 7.0.101 (nuget), it is impossible to use LAB images as before or converting to LAB colorspace. I get always RGB values, when working in this colorspace. Before...
View ArticleNew Post: impossible to work in LAB since 7.0.1.101
It seams to be related to the Pixelcollection. If i clone the image it is working. _PC = img.GetPixels(); MagickImage imgpreview = img.Clone(); picBoxPreview(imgpreview); But i do not update the...
View ArticleNew Post: impossible to work in LAB since 7.0.1.101
Can you try and see if using 'TransformColorSpace' helps you?
View ArticleNew Post: ResourceLimits.Thread
Hi, The property ResourceLimits.Thread seems to be gone on the last version. (7.0.1.101) How can I limit the amount of CPU used by Magick.Net on this version ? I was used to limit to half the available...
View ArticleNew Post: compare resolution
Hi, i would like to compare the resolution of some images. I couldn't find any help in the "documentation" (its hard to call it a documentation anyway) and trying now for over an hour everything that...
View ArticleNew Post: compare resolution
What do you mean by the resolution of the image? Width/Height or DPI? And what have you tried so far? Have you figured out how you can read an image? The image has a Width/Height property or a Density...
View ArticleNew Post: ResourceLimits.Thread
The ResourceLimits.Thread property has been removed because I now statically link the Visual Studio C++ redistributable. I cannot enable OpenMP anymore and you don't need that property when OpenMP is...
View ArticleNew Post: ResourceLimits.Thread
Thanks, So now the only way to have some kind of multi threaded processing is to parallelize multiple operations ?
View ArticleNew Post: Difference between Magick.NET-AnyCPU and Magick.NET.Core
Hello, I have updated to latest library (x64bit) everything works great as I tested for few days. But there is one thing, everything works good as long as I ran the app from visual studio. After...
View ArticleNew Post: ImageMagick Security Issue
I see there is an upgrade to Magick.NET 7.0.1.101 and associated NuGet package to resolve the security issue. Are you planning to release a build and package that fixes version 6? We are using the...
View Article