使用AppleScript在Photoshop中获取图层或选区的高度

时间:2017-07-25 14:07:20

标签: applescript height photoshop

使用AppleScript尝试在Photoshop中获取图层的高度或选择图层时遇到了很多麻烦。我的最终目标是获得高度,让我们说层A,然后是层B的高度,找到差异。它是一个更大的脚本的一部分,但我做的任何事情或搜索似乎都没有产生任何答案。

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

tell application "Adobe Photoshop CC 2015.5"  -- replace with the version of Photoshop you have
    activate
    set theDimensions to bounds of current layer of document 1
    set theWidth to item 3 of theDimensions
    set theHeight to item 4 of theDimensions
    set theDimensions to theWidth & theHeight
end tell

我在Photoshop文档中使用英寸作为度量单位,因此此脚本会在结果中以英寸为单位返回值。我假设您使用像素或其他...此脚本将返回适当的值

如果您不需要此脚本中的宽度值,请将它们注释掉

以下是仅限身高的版本

tell application "Adobe Photoshop CC 2015.5"  -- replace with the version of Photoshop you have
    activate
    set theDimensions to bounds of current layer of document 1
    --set theWidth to item 3 of theDimensions
    set theHeight to item 4 of theDimensions
    --set theDimensions to theWidth & theHeight
end tell