我有一个Photoshop javascript脚本,用于修改图像并使用新文件名保存:
var newPath = originalFolder + '/' + newFileName + '.' + originalExtension;
var outFile = new File(newPath);
app.activeDocument.saveAs(outFile);
我可以看到原始文件类型app.activeDocument.fullName.type
,结果类似于“PNGf”,所以如果我在saveAs
调用中添加一些选项,
app.activeDocument.saveAs(outFile, options);
然后我知道如何构建options
。我想用保存原始文件的相同选项保存新文件。例如,JPEG压缩比,PNG压缩方法,TiffSaveOptions.embedColorProfile
。
是否可以从app.activeDocument
或至少部分保存选项中找到原始保存选项?
或
是否可以从File.open
发现原始保存选项?