是否有可以旋转位图的 vala 类?此处显示了使用 C# 完成此操作的方法(非常巧妙),但代码相同
public void RotateAndSaveImage(String input, String output)
{
using (Image img = Image.FromFile(input))
{
img.RotateFlip(RotateFlipType.Rotate90FlipNone);
img.Save(output, System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
在瓦拉原因
test.vala:48.22-48.24: error: syntax error, expected `)'
using (Image img = Image.FromFile(input))
^^^