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

또한보십시오