embedColorProfile

書式

TiffSaveOptionsObject.embedColorProfile

説明

カラープロファイルを保存するかどうかを示します。保存するならtrue、そうでなければfalseになります。
var savefile = new File("~/Desktop/sample.tiff");
var tiffOpt = new TiffSaveOptions();  // TIFF形式オプション
tiffOpt.embedColorProfile = true;    // カラープロファイル
activeDocument.saveAs(savefile, tiffOpt, true, Extension.LOWERCASE);

目次に戻る