tags:

views:

697

answers:

4

I have an image and I want to crop the top portion of Image and save the image in C#. How can I go about it?

+1  A: 

You can create a new Bitmap of the desired size, and draw a portion of the old image to the new one using Graphics.FromImage to create a Graphics object that draws into the new image. Be sure to Dispose of the Graphics object when your're done, and then you can Save the newly-created image.

JayMcClellan
+4  A: 

Here's some cropping code well documented:

 try
 {
    //create the destination (cropped) bitmap
    Bitmap bmpCropped = new Bitmap(100, 100);
    //create the graphics object to draw with
    Graphics g = Graphics.FromImage(bmpCropped);

    Rectangle rectDestination = new Rectangle(0, 0, bmpCropped.Width, bmpCropped.Height);
    Rectangle rectCropArea = new Rectangle(myX, myY, myCropWidth, myCropHeight);

    //draw the rectCropArea of the original image to the rectDestination of bmpCropped
    g.DrawImage(myOriginalImage, rectDestination, rectCropArea,GraphicsUnit.Pixel);
    //release system resources
 }
 finally
 {
     g.Dispose();
 }
TStamper
+1, but you should use "using" (or try/finally) to make sure g.Dispose() is called
Lucas
+1  A: 
public static Bitmap Crop(Bitmap bitmap, Rectangle rect)
{
    // create new bitmap with desired size and same pixel format
    Bitmap croppedBitmap = new Bitmap(rect.Width, rect.Height, bitmap.PixelFormat);

    // create Graphics "wrapper" to draw into our new bitmap
    // "using" guarantees a call to gfx.Dispose()
    using (Graphics gfx = Graphics.FromImage(croppedBitmap))
    {
        // draw the wanted part of the original bitmap into the new bitmap
        gfx.DrawImage(bitmap, 0, 0, rect, GraphicsUnit.Pixel);
    }

    return croppedBitmap;
}
Lucas
A: 

Other answers will work, here is how to do it by creating an extension method for Images:

class TestProgram
{
    static void Main()
    {
        using (Image testImage = Image.FromFile(@"c:\file.bmp"))
        using (Image cropped = 
                     testImage.Crop(new Rectangle(10, 10, 100, 100)))
        {
            cropped.Save(@"c:\cropped.bmp");
        }
    }
}

static public class ImageExtensions
{
    static public Bitmap Crop(this Image originalImage, Rectangle cropBounds)
    {
        Bitmap croppedImage = 
            new Bitmap(cropBounds.Width, cropBounds.Height);

        using (Graphics g = Graphics.FromImage(croppedImage))
        {
            g.DrawImage(originalImage,
                0, 0,
                cropBounds,
                GraphicsUnit.Pixel);
        }

        return croppedImage;
    }
}
Daniel LeCheminant
so all you had to do was add "this" to my example :P
Lucas
@Lucas: Exactly! Actually, it also takes an Image instead of being restricted to a Bitmap. (Seriously though, when the question first came up, and before you posted, I spent 5 minutes writing up code that turned out to be nearly identical to yours, so I made it an extension method so I wouldn't have to throw it out entirely. Guess where your (currently) one upvote came from ;] )
Daniel LeCheminant