Applescript/Photoshop:使用图像创建新图层
如何在文档中创建一个新图层,并在该图层中包含图像?我正在使用 Pohotoshop CS5 和 AppleScript。 我知道如何制作这样的新图层:
set newLayer to make art layer with properties {name:"LayerA"}
只是不知道如何将图像放入其中。 谢谢。
How can I create a new layer in a document with an image in that layer? I am using Pohotoshop CS5 and AppleScript.
I know how to make a new layer like this:
set newLayer to make art layer with properties {name:"LayerA"}
Just don't know how to put an image in it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要直接从文件复制它,那就更复杂了,并且需要打开另一个应用程序(预览版)并从预览版复制它。这可能会有所帮助:
要求提供图像,打开预览,选择所有图像,复制它,然后退出。
然后将其粘贴到 Photoshop 中:
基本上就是这样!希望这能在某种程度上有所帮助。
If you need it copied straight from a file, that's more complicated, and requires to open up a different app (Preview) and copy it from Preview. This may help:
That asks for an image, opens Preview, selects all of the image, copies it, and then quits.
To then paste it into Photoshop:
And that's basically it! Hope that helped in some way.