0

我有以下 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?
}

我想旋转整个图像,包括内容。我也尝试过旋转所有文档的图层和艺术图层,但没有任何效果。

4

1 回答 1

0

所以……呃……是的。如果你想在 Photoshop 中旋转 PNG,上面的脚本就是这样做的方法。此处未显示的代码可能会导致它执行不同的操作,从而阻止旋转成功:)。

于 2011-06-18T13:30:39.710 回答