First of all, I know this is not the "official" forum to support MagickNet but since the author is MIA, you guys are the closest thing to support I'll get for now. I'm trying to get an MagickNet.Image from a memory stream and i keep having the "no decode delegate for this image format `' @ " error each time. I've tried a couple of other image format to no avail. Glancing around the forums, it seems I don't have the correct decoder (delegate) to instanciate the object. I ran the identify command with the list and my image format are in there. I've installed ImageMagick with the latest binaries for windows and I followed the instructions provide in the "tutorial" on magicknet website.
Here is a sample code in C#
Code: Select all
MemoryStream mestr = new MemoryStream();
this.bitmapImage.Save(mestr, ImageFormat.Bmp);
MagickNet.Image img = new MagickNet.Image(mestr);
Any pointer would be appreciated
Thanx