RasterImage.Crop

Crop(Rectangle)

Snijdt de opgegeven rechthoek bij.

public virtual void Crop(Rectangle rectangle)
ParameterTypeBeschrijving
rectangleRectangleDe rechthoek.

Voorbeelden

Het volgende codevoorbeeld laat zien hoe u een afbeelding bijsnijdt en opslaat.

[C#]

// Implementeer de juiste Crop-methode voor PSD-bestanden.
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 });
}

Zie ook


Crop(int, int, int, int)

Afbeelding bijsnijden met verschuivingen.

public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
ParameterTypeBeschrijving
leftShiftInt32De linkse verschuiving.
rightShiftInt32De juiste verschuiving.
topShiftInt32De topploeg.
bottomShiftInt32De onderste verschuiving.

Zie ook