我有以下Photoshop ExtendedScript(.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?
}
我想旋转整个图像,包括内容。我也试过旋转文档的所有层和艺术层,但都不起作用。
所以。。。嗯是 啊如果你想在Photoshop中旋转PNG,可以用上面的脚本。这里没有显示的代码可能会导致它做一些不同的事情,阻止旋转成功:)。