RasterCachedImage.RotateFlip

RasterCachedImage.RotateFlip method

Ruota, capovolge o ruota e capovolge l’immagine.

public override void RotateFlip(RotateFlipType rotateFlipType)
ParametroTipoDescrizione
rotateFlipTypeRotateFlipTypeIl tipo di rotazione capovolgimento.

Esempi

Il codice seguente mostra come ruotare l’immagine.

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

Guarda anche