views:

1013

answers:

1

I am building a new website and it will contain a lot of image manipulations and i found imagemagick which seams very good, but the problem as a .Net developer i can't integrate it in my website.

Is it possible to use in .Net application/websites?
How to add to reference and which file to add?
Any good examples?

+1  A: 

Code Project has an article on this topic: ImageMagick in VB.NET. It includes a C++/CLI library that wraps the ImageMagick C++ libraries to make them accessible to .NET applications.

TStamper