I want to scale an image in C# with quality level as good as Photoshop does. Is there any C# image processing library available to do this thing?
|
13
|
|||||||
|
|
|
Tested libraries like Imagemagick and GD are available for .NET You could also read up on things like bicubic interpolation and write your own. |
||
|
|
|
|
This is an article I spotted being referenced in Paint.NET's code for image resampling: Various Simple Image Processing Techniques by Paul Bourke. |
||
|
|
|
|
Here's a nicely commented Image Manipulation helper class that you can look at and use. I wrote it as an example of how to perform certain image manipulation tasks in C#. You'll be interested in the ResizeImage function that takes a System.Drawing.Image, the width and the height as the arguments.
|
|||
|
|
|
|
You can try dotImage, one of my company's products, which includes an object for resampling images that has 18 filter types for various levels of quality. Typical usage is:
in addition, dotImage includes 140 some odd image processing commands including many filters similar to those in PhotoShop, if that's what you're looking for. |
||
|
|
|
|
CodeProject articles discussing and sharing source code for scaling images: |
||
|
|
|
|
There's an article on Code Project about using GDI+ for .NET to do photo resizing using, say, Bicubic interpolation. There was also another article about this topic on another blog (MS employee, I think), but I can't find the link anywhere. :( Perhaps someone else can find it? |
||
|
|
|
|
Try the different values for Graphics.InterpolationMode. There are several typical scaling algorithms available in GDI+. If one of these is sufficient for your need, you can go this route instead of relying on an external library. |
||
|
|
|
|
When you draw the image using GDI+ it scales quite well in my opinion. You can use this to create a scaled image. If you want to scale your image with GDI+ you can do something like this:
|
||
|
|
