interlaced

書式

GIFSaveOptionsObject.interlaced

説明

インターレースにするかどうか指定します。trueならインターレースにします。falseならインターレースにしません。

var savefile = new File("~/Desktop/sample.gif");
var gifOpt = new GIFSaveOptions();  // GIF形式オプション
gifOpt.interlaced=true;  // インターレースにする
activeDocument.saveAs(savefile, gifOpt, true, Extension.LOWERCASE);

目次に戻る