gpt4 book ai didi

photoshop - 如何在事件文档中加载图像? (Photoshop 脚本)

转载 作者:行者123 更新时间:2023-12-04 11:31:28 27 4
gpt4 key购买 nike

我是 Photoshop 脚本的新手。

我想将图像图像(从我的硬盘)作为带有定位的新图层加载到事件文档中。如何才能做到这一点?有人可以分享代码吗?

谢谢

最佳答案

您可以打开 Photoshop 文件对话框来搜索图像并将其添加到图层中

file = app.openDialog();//opens dialog,choose one image

if(file[0]){ //if you have chosen an image
app.load(file[0]); //load it into documents
backFile= app.activeDocument; //prepare your image layer as active document
backFile.resizeImage(width,height); //resize image into given size i.e 640x480
backFile.selection.selectAll();
backFile.selection.copy(); //copy image into clipboard
backFile.close(SaveOptions.DONOTSAVECHANGES); //close image without saving changes
doc.paste(); //paste selection into your document
doc.layers[0].name = "BackgroundImage"; //set your layer's name
}

有一个使用 photoshop javascript 扩展 (.jsx) 制作日历的好例子。

请检查 here

关于photoshop - 如何在事件文档中加载图像? (Photoshop 脚本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2718443/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com