New Post: Rebuild for Q16-HDRI-AnyCPU Errors
You are probably getting an error message that you shouldn't be adding a Serializable attribute to the MagickImageCollection and the MagickImage class. Those classes can not be made serializable. What...
View ArticleNew Post: Write MPC file format
I try write MagickImageCollection to .MPC format (using Write method), but it can not create .CACHE file togetther.
View ArticleNew Post: Combining images
Hi, here is the url.https://www.dropbox.com/s/co2yalg2yhfcsp0/Match1.gif?dl=0Really thanks for your help!!2016-05-01 5:35 GMT-03:00 dlemstra <[email removed]>:From: dlemstraCan you also share...
View ArticleNew Post: mp4
This should possible when you make sure that 'ffmpeg.exe' is in the same directory as the Magick.NET library. I have not tried this myself.
View ArticleNew Post: Write MPC file format
I get both a cache and mpc file when I execute the following code:using (MagickImageCollection images = new MagickImageCollection()) { images.Add("logo:"); images.Add("logo:");...
View ArticleNew Post: Combining images
Your output looks pretty good. Maybe you could add a call to the 'Optimize' method of the MagickImageCollection before you write it? Don't think there are any other improvements that you could do.
View ArticleNew Post: Picture Heap Issues
Hi, I am trying to produce what looks like a heap of photos. I found this as a starting point:http://rubblewebs.co.uk/imagemagick/display_example.php?example=49 - a php example - but I want to drive it...
View ArticleNew Post: ImageMagick Security Issue
ImageMagick recently received vulnerability reports for certain coders, they include possible remote code execution and ability to render files on the local...
View ArticleNew Post: ImageMagick Security Issue
The remote code execution issue is not possible in Magick.NET. I did publish a new release that includes a fix for reading files on the system.
View ArticleNew Post: ImageMagick Security Issue
Looking at the vulnerability disclosure, there are five issues:CVE-2016-3714: Remote code execution via command injectionCVE-2016-3715: Arbitrary file deleteCVE-2016-3716: Arbitrary file...
View ArticleNew Post: Determine hidden alpha channels
I am currently trying to process an image that has 3 hidden alpha channels. I was wondering if there was any information on the MagickImage class I could use to determine if the channels are hidden or...
View ArticleNew Post: ImageMagick Security Issue
The main issue with these CVE's is related to the MVG and MSL coders. Last night I thought that it was a bad idea to disable them by default. I changed my mind during the day and I will disable them...
View ArticleNew Post: Determine hidden alpha channels
The original tif file can be found here : https://drive.google.com/file/d/0BwIdg1I3oMwJM3BXdTRyTmtKUGs/view?usp=sharing
View ArticleNew Post: ImageMagick Security Issue
Hi, Since Microsoft is (1) porting .NET to Linux/Mac and (2) they are not porting System.Drawing to Linux/Mac (yet), many people would be using ImageMagicK.net on Linux/Mac and would be vulnerable to...
View ArticleNew Post: ImageMagick Security Issue
You also don't need to worry about issue 1 when I add support for Linux/Mac for .NET Core. The SVG coder that Magick.NET uses is librsvg that does not have this issue. A new release that disables MVG...
View ArticleNew Post: Get number of colors using Magick.net
Hi, How to get the number of colors using Magick.net library. Using imagemagick I can get the color info using commandline: convert "image.emf" -unique-colors -format %w info: Let me know.
View ArticleNew Post: ImageMagick Security Issue
It turns out that the policy.xml file is not being used. This means that the change from Tuesday does nothing. Working on a fix now.
View ArticleNew Post: Picture Heap Issues
Try add:image2.VirtualPixelMethod = VirtualPixelMethod.Transparent; Before:image2.Rotate(rand2.Next(-25, 25));
View Article