Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The images that are fresh out from digital cameras are often above the size of 2-3 MB making it difficult for it to get transferred over email and other ways. This requires the image to be resized (in terms of file size and not height or width). Quite similar to MS Paint offering image resizing functionality. I am not well educated on image file theories. I would appreciate if someone can point me towards following information sources:

  • Image theory (how various image formats work jpeg, png, tiff etc).?

  • How does the image looses its sharpness when resized? Is there some

  • Are there any free .Net (I am using 4.0) libraries available for doing this? If not can I use any library using com interoperabilty?

Many thanks,

share|improve this question
Read up on "color quantization" en.wikipedia.org/wiki/Color_quantization – BryanJ Jun 21 '12 at 12:52
The Bitmap(image, width, height) constructor does a pretty credible job without much fuss. – Hans Passant Jun 21 '12 at 12:58
Lousy quality, though. – Computer Linguist Jun 26 '12 at 14:27

2 Answers

up vote 4 down vote accepted

Image resizing is functionality is built right into the .NET framework. There are a couple of different approaches:

  • GDI+
  • WIC
  • WPF

Here's a nice blog post covering the differences between them.

Here's an example with GDI+:

public void Resize(string imageFile, string outputFile, double scaleFactor)
{
    using (var srcImage = Image.FromFile(imageFile))
    {
        var newWidth = (int)(srcImage.Width * scaleFactor);
        var newHeight = (int)(srcImage.Height * scaleFactor);
        using (var newImage = new Bitmap(newWidth, newHeight))
        using (var graphics = Graphics.FromImage(newImage))
        {
            graphics.SmoothingMode = SmoothingMode.AntiAlias;
            graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
            graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
            graphics.DrawImage(srcImage, new Rectangle(0, 0, newWidth, newHeight));
            newImage.Save(outputFile);
        }
    }
}
share|improve this answer
Thanks Darin. I do not wish to mention the width and height in numbers. Rather they will be mentioned in percentages. To use this I will have to (probably) calculate the height width of the existing images. – James Jun 21 '12 at 12:37
Yes, you could do this after loading the srcImage. Between the first and the second using statement. You cuold use srcImage.Width and srcImage.Height to calculate the newWidth and newHeight passed to the Bitmap constructor. – Darin Dimitrov Jun 21 '12 at 12:39
I have updated my post with an example. – Darin Dimitrov Jun 21 '12 at 12:47
I will try this. Thanks! – James Jun 21 '12 at 13:02

Imageresizer works well. http://imageresizing.net/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.