RotateFlip
TiffImage.RotateFlip method
يقوم بتدوير الإطار النشط فقط أو قلبه أو تدويره وقلبه.
public override void RotateFlip(RotateFlipType rotateFlipType)
معامل | يكتب | وصف |
---|---|---|
rotateFlipType | RotateFlipType | نوع تدوير الوجه. |
أمثلة
يقوم هذا المثال بتحميل صورة TIFF ، ويقوم بتدويرها بمقدار 90 درجة في اتجاه عقارب الساعة وقلب الصورة بشكل اختياري أفقيًا و (أو) عموديًا.
[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)
{
// قم بالتدوير والوجه والحفظ في ملف الإخراج.
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());
}
}
أنظر أيضا
- enum RotateFlipType
- class TiffImage
- مساحة الاسم Aspose.Imaging.FileFormats.Tiff
- المجسم Aspose.Imaging