RasterCachedImage.RotateFlip
RasterCachedImage.RotateFlip method
Fait pivoter, retourne ou fait pivoter et retourne l’image.
public override void RotateFlip(RotateFlipType rotateFlipType)
Paramètre | Taper | La description |
---|---|---|
rotateFlipType | RotateFlipType | Le type de retournement de rotation. |
Exemples
Le code suivant montre comment faire pivoter l’image.
[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);
}
Voir également
- enum RotateFlipType
- class RasterCachedImage
- espace de noms Aspose.PSD
- Assemblée Aspose.PSD