RasterImage.Crop

Crop(Rectangle)

يقطع المستطيل المحدد .

public virtual void Crop(Rectangle rectangle)
معامليكتبوصف
rectangleRectangleالمستطيل.

أمثلة

يوضح مثال الكود التالي كيفية اقتصاص صورة وحفظها.

[C#]

// تنفيذ طريقة القص الصحيحة لملفات 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 });
}

أنظر أيضا


Crop(int, int, int, int)

اقتصاص الصورة مع التحولات .

public virtual void Crop(int leftShift, int rightShift, int topShift, int bottomShift)
معامليكتبوصف
leftShiftInt32التحول الأيسر.
rightShiftInt32التحول الصحيح.
topShiftInt32التحول الأعلى.
bottomShiftInt32التحول السفلي.

أنظر أيضا