gpt4 book ai didi

javascript - 如何使用脚本 Photoshop 保存文件?

转载 作者:行者123 更新时间:2023-12-04 03:41:23 28 4
gpt4 key购买 nike

我想编写一个脚本,将文本文件中的不同文本替换到我的 shalon 中,并将图像保存为 jpeg 格式。

出现错误:“此版本的 Photoshop 中可能不提供此功能”这一行:

activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);

我的代码:

while(!myFile.eof)
{
line = myFile.readln();
createText(line);

var thistimestamp = Math.round(new Date().getTime() / 1000);
saveFile = new File( "/c/Users/marki/Desktop/Temp001/" +thistimestamp)
saveOptions = new JPEGSaveOptions();
saveOptions.embedColorProfile = true;
saveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
saveOptions.matte = MatteType.NONE;
saveOptions.quality = 9;
app.activeDocument.saveAs(saveFile, saveOptions, true,Extension.LOWERCASE);
}

我使用 Adob​​e Photoshop:2017.0.0 20161012.r.53 2016/10/12:23:00:00 CL 1094006 (x64)

最佳答案

你错过了扩展:D

 saveFile = new File( "c:\\temp\\" + thistimestamp) + ".jpg");

关于javascript - 如何使用脚本 Photoshop 保存文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65977906/

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