colorReduction

書式

ExportOptionsGIFObject.colorReduction

説明

GIF形式で色の割り当て方法を指定します。以下の4種類を指定できます。

内容
ColorReductionMethod.ADAPTIVE割り付け
ColorReductionMethod.PERCEPTUAL知覚的
ColorReductionMethod.SELECTIVE特定
ColorReductionMethod.WEB制限(WEB)
var savefile=new File("~/Desktop/exp.gif");
var exportOptions = new ExportOptionsGIF();
exportOptions.colorCount = 8;
exportOptions.colorReduction = ColorReductionMethod.WEB;
app.activeDocument.exportFile(savefile, ExportType.GIF, exportOptions);

目次に戻る