RasterCachedImage.RotateFlip

RasterCachedImage.RotateFlip method

छवि को घुमाता है, फ़्लिप करता है या घुमाता है और फ़्लिप करता है.

public override void RotateFlip(RotateFlipType rotateFlipType)
पैरामीटरप्रकारविवरण
rotateFlipTypeRotateFlipTypeरोटेट फ्लिप प्रकार।

उदाहरण

निम्न कोड दिखाता है कि छवि को कैसे घुमाएं।

[C#]

var sourceFile = "1.psd";
var pngPath = "RotateFlipTest2617.png";
var psdPath = "RotateFlipTest2617.psd";
var flipType = RotateFlipType.Rotate270FlipXY;
using (var im = (PsdImage)(Image.Load(sourceFile)))
{
    im.RotateFlip(flipType);
    im.Save(pngPath, new PngOptions()
    {
        ColorType = PngColorType.TruecolorWithAlpha
    });
    im.Save(psdPath);
}

यह सभी देखें