我有一个photoshop文件和200个图像文件(png)。 使用photoshop作为模式,我需要生成200个新图像,其中每个图像都是放在photoshop模式中的不同png的结果。
基本上,我用外部png文件替换photoshop中的图层图像。
是否可以使用photoshop脚本自动完成?
答案 0 :(得分:3)
是的,通过脚本编写,您可以执行此操作。使用源图像(psd)然后加载200个图像中的每一个并将其放入源文件中(然后执行您想要的操作,保存文件)切换回源文件并对图像进行循环,直到全部完成。
// must have source psd open to start with.
//pref pixels
app.preferences.rulerUnits = Units.PIXELS;
// call the source document
var srcDoc = app.activeDocument;
var inFolder = Folder.selectDialog("Please select folder to process");
if (inFolder != null)
{
var fileList = inFolder.getFiles(/\.(png)$/i);
}
// main loop starts here
for(var i = 0; i < fileList.length; i++)
{
// load the frames one by one
var doc = open(fileList[i]);
var tempImage = app.activeDocument.name;
//select all
activeDocument.selection.selectAll()
//copy image
activeDocument.selection.copy();
//close that document without saving
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
// select the source image
activeDocument = srcDoc;
getMeThisLayer("my favourite layer")
//paste
app.activeDocument.paste();
//deselect all
activeDocument.selection.deselect()
var filePath = srcDoc.path + "/" + tempImage;
// Flatten the image
activeDocument.flatten();
// save out the image
var pngFile = new File(filePath);
pngSaveOptions = new PNGSaveOptions();
pngSaveOptions.embedColorProfile = true;
pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
pngSaveOptions.matte = MatteType.NONE; pngSaveOptions.quality = 1;
activeDocument.saveAs(pngFile, pngSaveOptions, false, Extension.LOWERCASE);
// close that save png
app.activeDocument.close()
}
function getMeThisLayer(aLayerName)
{
try
{
// try to find the layer
app.activeDocument.activeLayer = app.activeDocument.layers.getByName(aLayerName)
return
}
catch(e)
{
//Whoops can't find layer
alert("Can't find layer " + aLayerName + "\n" + e)
}
}
玩得开心。
答案 1 :(得分:1)
根据请求,我建议在photoshop中使用Variables功能。表 - &GT;图像 - &GT;变量
然后只需选择要更改的图层并指定变量名称并选择“像素替换”行为。
在Photoshop之外,创建一个文本文件,第一行包含变量名,每行包含新行的文件名。
转到菜单 - &gt;文件 - &gt;导入 - &gt;变量数据集并浏览您的文本文件。
如果您看到错误消息,那么一切都正确。
转到菜单 - &gt;文件 - &gt;导出 - &gt;数据集到文件并瞧!