RasterCachedImage.RotateFlip

RasterCachedImage.RotateFlip method

Roteert, spiegelt of roteert en spiegelt de afbeelding.

public override void RotateFlip(RotateFlipType rotateFlipType)
ParameterTypeBeschrijving
rotateFlipTypeRotateFlipTypeHet roteer flip-type.

Voorbeelden

De volgende code laat zien hoe u de afbeelding kunt roteren.

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

Zie ook