我有以下 Photoshop ExtendScript (.jsx) 脚本,它旋转图像画布,但不旋转内容:
var doc = app.open(...); // open the .png file
if (doc.width > doc.height) { // check if this document is landscape
doc.rotateCanvas(90); // rotate the canvas to portrait
// but how to rotate the contents?
}
我想旋转整个图像,包括内容。我也尝试过旋转所有文档的图层和艺术图层,但没有任何效果。