views:

193

answers:

1

Hi folks,

Still trying to resolve some image manipulation issues in .Net and I've come across ImageMagickObject.dll mentioned with some .Net projects - is this something usable with an application rather than a website? I have an .net application I'm trying to bridge with ImageMagick or one of its wrappers but not having much luck as my C/C++ skills are fairly limited.

ETA: My need is to use one of the similarity functions present in IM, IsSimilarImage() within the Image class or Compare's SimilarityImage(). I'm very confused as to whether these can be used in a non-command line context or not.

Thanks, Becky

A: 

I don't know the dll that you are referring to but if you want to use ImageMagick from .NET it is probably easiest to use the wrapper library available at Codeplex:

ImageMagick.NET

ImageMagick is a very powerful library for image manipulation that of course can be used in web applications and desktop applications as well.

0xA3
I've had a look at this before but the information available is very sparse as the ImageMagick functionality I need isn't in the ImageMagick.Net library already and I can't work out how to extend it without documentation.
Becky Franklin