dither

書式

GIFSaveOptionsObject.dither

説明

ディザの種類を指定します。以下の表に示す値を指定できます。

内容
Dither.DIFFUSION誤差拡散
Dither.NOISEノイズ
Dither.NONEなし
Dither.PATTERNパターン
var savefile = new File("~/Desktop/sample.gif");
var gifOpt = new GIFSaveOptions();  // GIF形式オプション
gifOpt.colors= 16;   // 16色
gifOpt.palette = Palette.LOCALSELECTIVE;
gifOpt.dither=Dither.NONE;  // ディザなし
activeDocument.saveAs(savefile, gifOpt, true, Extension.LOWERCASE);

目次に戻る