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);
}

也可以看看