vote up 4 vote down star

How can I write an application that will crop images in C#?

flag

0% accept rate

7 Answers

vote up 9 vote down

You can use Graphics.DrawImage to draw a cropped image onto the graphics object from a bitmap.

Rectangle cropRect = new Rectangle(...);
Bitmap src = Image.FromFile(fileName) as Bitmap;
Bitmap target = new Bitmap(cropRect.Width, cropRect.Height);

using(Graphics g = Graphics.FromImage(target))
{
   g.DrawImage(src, cropRect, 
                    new Rectangle(0, 0, target.Width, target.Height));
}
link|flag
vote up 1 vote down

Here is a tutorial on image editing including saving, cropping, and resizing

The included example of cropping is quite straightforward:

private static Image cropImage(Image img, Rectangle cropArea)
{
   Bitmap bmpImage = new Bitmap(img);
   Bitmap bmpCrop = bmpImage.Clone(cropArea,
   bmpImage.PixelFormat);
   return (Image)(bmpCrop);
}
link|flag
vote up 0 vote down

It's quite easy:

  • Create a new Bitmap object with the cropped size.
  • Use Graphics.FromImage to create a Graphics object for the new bitmap.
  • Use the DrawImage method to draw the image onto the bitmap with a negative X and Y coordinate.
link|flag
vote up 0 vote down

Assuming you mean that you want to take an image file (JPEG, BMP, TIFF, etc) and crop it then save it out as a smaller image file, I suggest using a third party tool that has a .NET API. Here are a few of the popular ones that I like:

LeadTools
Accusoft Pegasus Snowbound Imaging SDK

link|flag
vote up -1 vote down

Start by concentrating really hard.

link|flag
lol! good one... – Mitch Wheat Apr 9 at 16:23
Step 2: Use the Google? – JohnFx Apr 9 at 16:23
vote up -1 vote down

Here's a simple example on cropping an image

public Image Crop(string img, int width, int height, int x, int y)
{
try
{
    Image image = Image.FromFile(img);
    Bitmap bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb);
    bmp.SetResolution(80, 60);

    Graphics gfx = Graphics.FromImage(bmp);
    gfx.SmoothingMode = SmoothingMode.AntiAlias;
    gfx.InterpolationMode = InterpolationMode.HighQualityBicubic;
    gfx.PixelOffsetMode = PixelOffsetMode.HighQuality;
    gfx.DrawImage(image, new Rectangle(0, 0, width, height), x, y, width, height, GraphicsUnit.Pixel);
    // Dispose to free up resources
    image.Dispose();
    bmp.Dispose();
    gfx.Dispose();

    return bmp;
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
    return null;
}

}

link|flag

Your Answer

Get an OpenID
or

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