ditherAmount

書式

GIFSaveOptionsObject.ditherAmount

説明

ディザ(誤差拡散)の適用量を指定します。1〜100までの整数値の割を指定します。範囲外の値を指定するとエラーになります。なお、この指定が有効なのはditherプロパティにDither.DIFFUSIONの値が設定されている場合に限ります。

var savefile = new File("~/Desktop/sample.gif");
var gifOpt = new GIFSaveOptions();  // GIF形式オプション
gifOpt.colors= 8;   // 8色
gifOpt.dither=Dither.DIFFUSION;  // 誤差拡散
gifOpt.ditherAmount = 25;
activeDocument.saveAs(savefile, gifOpt, true, Extension.LOWERCASE);

目次に戻る