RotateFlip
TiffImage.RotateFlip method
Roterar, vänder eller roterar och vänder endast den aktiva ramen.
public override void RotateFlip(RotateFlipType rotateFlipType)
Parameter | Typ | Beskrivning |
---|---|---|
rotateFlipType | RotateFlipType | Den roterande fliptypen. |
Exempel
Det här exemplet läser in en TIFF-bild, roterar den 90 grader medurs och valfritt vänder bilden horisontellt och/eller vertikalt.
[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)
{
// Rotera, vänd och spara till utdatafilen.
using (Aspose.Imaging.FileFormats.Tiff.TiffImage image = (Aspose.Imaging.FileFormats.Tiff.TiffImage)Aspose.Imaging.Image.Load(dir + "sample.tif"))
{
image.RotateFlip(rotateFlipType);
image.Save(dir + "sample." + rotateFlipType + ".png", new Aspose.Imaging.ImageOptions.PngOptions());
}
}
Se även
- enum RotateFlipType
- class TiffImage
- namnutrymme Aspose.Imaging.FileFormats.Tiff
- hopsättning Aspose.Imaging