RasterImage.Crop
コンテンツ
[
隠れる
]Crop(Rectangle)
指定された長方形をトリミングします。
public virtual void Crop(Rectangle rectangle)
パラメータ | タイプ | 説明 |
---|---|---|
rectangle | Rectangle | 長方形。 |
例
次のコード例は、画像をトリミングして保存する方法を示しています。
[C#]
// PSD ファイルの正しい Crop メソッドを実装します。
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 });
}
関連項目
- struct Rectangle
- class RasterImage
- 名前空間 Aspose.PSD
- 組み立て Aspose.PSD
Crop(int, int, int, int)
シフトで画像をトリミングします。
public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
パラメータ | タイプ | 説明 |
---|---|---|
leftShift | Int32 | 左シフト。 |
rightShift | Int32 | 右シフト。 |
topShift | Int32 | トップシフト。 |
bottomShift | Int32 | ボトムシフト。 |
関連項目
- class RasterImage
- 名前空間 Aspose.PSD
- 組み立て Aspose.PSD