RasterCachedImage.RotateFlip
RasterCachedImage.RotateFlip method
旋转、翻转或旋转并翻转图像。
public override void RotateFlip(RotateFlipType rotateFlipType)
范围 | 类型 | 描述 |
---|---|---|
rotateFlipType | RotateFlipType | 旋转翻转类型。 |
例子
以下代码显示了如何旋转图像。
[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);
}
也可以看看
- enum RotateFlipType
- class RasterCachedImage
- 命名空间 Aspose.PSD
- 部件 Aspose.PSD