RasterImage.Crop
inhoud
[
verbergen
]Crop(Rectangle)
Snijdt de opgegeven rechthoek bij.
public virtual void Crop(Rectangle rectangle)
Parameter | Type | Beschrijving |
---|---|---|
rectangle | Rectangle | De 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
- struct Rectangle
- class RasterImage
- naamruimte Aspose.PSD
- montage Aspose.PSD
Crop(int, int, int, int)
Afbeelding bijsnijden met verschuivingen.
public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
Parameter | Type | Beschrijving |
---|---|---|
leftShift | Int32 | De linkse verschuiving. |
rightShift | Int32 | De juiste verschuiving. |
topShift | Int32 | De topploeg. |
bottomShift | Int32 | De onderste verschuiving. |
Zie ook
- class RasterImage
- naamruimte Aspose.PSD
- montage Aspose.PSD