embedICCProfile

書式

ExportOptionsPhotoshopObject.embedICCProfile

説明

ICCプロファイルを埋め込むかどうかを示します。trueなら埋め込む、falseなら埋め込みません。
var savefile=new File("~/Desktop/exp.psd");
var exportOptions = new ExportOptionsPhotoshop();
exportOptions.embedICCProfile = true;
app.activeDocument.exportFile(savefile, ExportType.PHOTOSHOP, exportOptions);

目次に戻る