RasterImage.Crop
Contenido
[
Ocultar
]Crop(Rectangle)
Recorta el rectángulo especificado.
public virtual void Crop(Rectangle rectangle)
Parámetro | Escribe | Descripción |
---|---|---|
rectangle | Rectangle | el 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
- struct Rectangle
- class RasterImage
- espacio de nombres Aspose.PSD
- asamblea Aspose.PSD
Crop(int, int, int, int)
Recortar imagen con turnos.
public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
Parámetro | Escribe | Descripción |
---|---|---|
leftShift | Int32 | El desplazamiento a la izquierda. |
rightShift | Int32 | El cambio correcto. |
topShift | Int32 | El turno superior. |
bottomShift | Int32 | El cambio de fondo. |
Ver también
- class RasterImage
- espacio de nombres Aspose.PSD
- asamblea Aspose.PSD