embedICCProfile

書式

IllustratorSaveOptionsObject.embedICCProfile

説明

ファイル保存時にICCプロファイルを埋め込むかどうかを指定します。trueなら埋め込む、falseなら埋め込まずに保存します。
var opt=new IllustratorSaveOptions();
opt.embedICCProfile=false;
var savefile=new File("~/Desktop/myImageData.ai");
app.activeDocument.saveAs(savefile, opt);

目次に戻る