在Photoshop中旋转PNG的脚本?

时间:2011-06-17 01:14:25

标签: photoshop extendscript jsx photoshop-script

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

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

1 个答案:

答案 0 :(得分:0)

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