RasterImage.Crop

Crop(Rectangle)

Rogne le rectangle spécifié.

public virtual void Crop(Rectangle rectangle)
ParamètreTaperLa description
rectangleRectangleLe rectangle.

Exemples

L’exemple de code suivant montre comment recadrer une image et l’enregistrer.

[C#]

// Implémenter la méthode Crop correcte pour les fichiers PSD.
string sourceFileName = "1.psd";
string exportPathPsd = "CropTest.psd";
string exportPathPng = "CropTest.png";
using (RasterImage image = Image.Load(sourceFileName) as RasterImage)
{
    image.Crop(new Rectangle(10, 30, 100, 100));
    image.Save(exportPathPsd, new PsdOptions());
    image.Save(exportPathPng, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}

Voir également


Crop(int, int, int, int)

Recadrer l’image avec des décalages.

public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
ParamètreTaperLa description
leftShiftInt32Le décalage à gauche.
rightShiftInt32Le virage à droite.
topShiftInt32Le changement supérieur.
bottomShiftInt32Le décalage du bas.

Voir également