views:

144

answers:

2

Hi Iam developing an image viewer application just like irfan-view or acdsee which should be capable to view lots of different image file formats (not just the standard ones which can be done with System.Drawing.Image).

Iam currently using ImageMagick but it isn't very fast and seems to be unstable with some image files.

Can anyone suggest a good imaging library, ideally with a .NET wrapper already present?

+2  A: 

I am not sure about .NET wrapper but FreeImage library is rather good. As I know it is faster than imageMagick, and less buggy.

ton4eg
They do have a dotnet wrapper http://freeimage.sourceforge.net/documentation.html
ram
It seems FreeImage only focuses in modern image formats. There seem to be no support for PCX, LBM, PIC. Also it cannot render PDF files which is one thing I need.
codymanix
+2  A: 

There is the DevIL image library that comes with the DevIL.NET wrapper.

Gregory Pakosz
OK, DevIL supports 40 formats, more than FreeImage, but not nearly as much as ImageMagick supports.
codymanix
you asked for an alternative :)
Gregory Pakosz