embedColorProfile

書式

JPEGSaveOptionsObject.embedColorProfile

説明

カラープロファイルを埋め込むかどうか指定します。trueならカラープロファイルを埋め込みます。falseなら埋め込みません。

var savefile = new File("~/Desktop/sample.jpg");
var jpegOpt = new JPEGSaveOptions();  // JPEG形式オプション
jpegOpt.embedColorProfile=true;  // カラープロファイルを埋め込む
activeDocument.saveAs(savefile, jpegOpt, true, Extension.LOWERCASE);

目次に戻る