我想为 Photoshop 编写一个脚本来保存文件。但我不知道如何设置命运文件夹。请帮忙。
app.activeDocument.save()
ExportOptionsSaveForWeb.format - SaveDocumentType.JPEG;
ExportOptionsSaveForWeb.quality = 40;
ExportOptionsSaveForWeb
app.exportDocument (exportIn, exportAs, options)
我想为 Photoshop 编写一个脚本来保存文件。但我不知道如何设置命运文件夹。请帮忙。
app.activeDocument.save()
ExportOptionsSaveForWeb.format - SaveDocumentType.JPEG;
ExportOptionsSaveForWeb.quality = 40;
ExportOptionsSaveForWeb
app.exportDocument (exportIn, exportAs, options)
不使用网络选项的导出可能更容易:
// jpg file options
var jpgFile = new File(myfilePath);
jpgSaveOptions = new JPEGSaveOptions();
jpgSaveOptions.formatOptions = FormatOptions.OPTIMIZEDBASELINE;
jpgSaveOptions.embedColorProfile = true;
jpgSaveOptions.matte = MatteType.NONE;
jpgSaveOptions.quality = 40;
activeDocument.saveAs(jpgFile, jpgSaveOptions, true, Extension.LOWERCASE);
只需将myfilePath设置为您想要的 (C:\myfolder\myfile.jpg)