| 値 | 内容 | 
|---|---|
| ForcedColors.BLACKWHITE | 白と黒を強制的に割り当て | 
| ForcedColors.NONE | 強制割り当てなし | 
| ForcedColors.PRIMARIES | 黒,青,赤,紫,緑,水色,黄,白を強制割り当て | 
| ForcedColors.WEB | Web基本216色を割り当て | 
var savefile = new File("~/Desktop/sample.gif");
var gifOpt = new GIFSaveOptions();  // GIF形式オプション
gifOpt.colors= 16;   // 16色
gifOpt.palette = Palette.LOCALSELECTIVE;
gifOpt.forced=ForcedColors.PRIMARIES;  // 基本の8色優先
activeDocument.saveAs(savefile, gifOpt, true, Extension.LOWERCASE);