RasterImage.Crop

Crop(Rectangle)

Recorta el rectángulo especificado.

public virtual void Crop(Rectangle rectangle)
ParámetroEscribeDescripción
rectangleRectangleel rectángulo

Ejemplos

El siguiente ejemplo de código muestra cómo recortar una imagen y guardarla.

[C#]

// Implementar el método de recorte correcto para archivos 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 });
}

Ver también


Crop(int, int, int, int)

Recortar imagen con turnos.

public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
ParámetroEscribeDescripción
leftShiftInt32El desplazamiento a la izquierda.
rightShiftInt32El cambio correcto.
topShiftInt32El turno superior.
bottomShiftInt32El cambio de fondo.

Ver también