RotateFlip

RasterCachedImage.RotateFlip method

Ruota, capovolge o ruota e capovolge l’immagine.

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

Esempi

Questo esempio carica un’immagine raster memorizzata nella cache, la ruota di 90 gradi in senso orario e facoltativamente capovolge l’immagine orizzontalmente e/o verticalmente.

[C#]

string dir = "c:\\temp\\";

Aspose.Imaging.RotateFlipType[] rotateFlipTypes = new Aspose.Imaging.RotateFlipType[]
{
    Aspose.Imaging.RotateFlipType.Rotate90FlipNone,
    Aspose.Imaging.RotateFlipType.Rotate90FlipX,
    Aspose.Imaging.RotateFlipType.Rotate90FlipXY,
    Aspose.Imaging.RotateFlipType.Rotate90FlipY,
};

foreach (Aspose.Imaging.RotateFlipType rotateFlipType in rotateFlipTypes)
{
    // Ruota, capovolgi e salva nel file di output.
    using (Aspose.Imaging.RasterCachedImage image = (Aspose.Imaging.RasterCachedImage)Aspose.Imaging.Image.Load(dir + "sample.bmp"))
    {
        image.RotateFlip(rotateFlipType);
        image.Save(dir + "sample." + rotateFlipType + ".bmp");
    }
}

Guarda anche