tags:

views:

57

answers:

2

Is there a good library to resize an image in .NET with good quality? I'm not pleased with the quality of resized images that GDI+ produces.

It does not matter if the library is free or at a cost.

A: 

Hmm... try this:

http://www.aspfree.com/c/a/C-Sharp/Lossless-Image-Resizing-in-C-Sharp/2/

It's talking about an image quantization library that (if you look through the other pages of the tutorial) apparently will provide a much higher quality image output.

EdgarVerona
+1  A: 

That's pretty odd, GDI+ has nice filters. Be sure to set the Graphics.InterpolationMode property to a high quality setting. LeadTools is one of the leading graphics libraries, ImageMagick if you prefer open source.

Hans Passant