web-dev-qa-db-fra.com

Comment couper une partie de l'image en C #

Je ne sais pas comment pour couper une image rectangulaire d'une autre grande image.

Disons qu'il y a 300 x 600 image.png.

Je veux juste couper un rectangle avec X: 10 Y 20, avec 200, hauteur 100 et l'enregistrer dans un autre fichier .

Comment puis-je le faire en C #?

Merci!!!

20
Developer

Découvrez Graphics Class sur MSDN.

Voici un exemple qui vous dirigera dans la bonne direction (notez l'objet Rectangle):

public Bitmap CropImage(Bitmap source, Rectangle section)
{
    // An empty bitmap which will hold the cropped image
    Bitmap bmp = new Bitmap(section.Width, section.Height);

    Graphics g = Graphics.FromImage(bmp);

    // Draw the given area (section) of the source image
    // at location 0,0 on the empty bitmap (bmp)
    g.DrawImage(source, 0, 0, section, GraphicsUnit.Pixel);

    return bmp;
}

// Example use:     
Bitmap source = new Bitmap(@"C:\tulips.jpg");
Rectangle section = new Rectangle(new Point(12, 50), new Size(150, 150));

Bitmap CroppedImage = CropImage(source, section);
30
James Hill

Une autre façon de corp une image serait de cloner l'image avec des points de départ et une taille spécifiques.

int x= 10, y=20, width=200, height=100;
Bitmap source = new Bitmap(@"C:\tulips.jpg");
Bitmap CroppedImage = source.Clone(new System.Drawing.Rectangle(x, y, width, height), source.PixelFormat);
23
Abhijit Amin