colorReduction

書式

ExportOptionsPNG8Object.colorReduction

説明

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

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

目次に戻る