var savefile = new File("~/Desktop/sample.bmp"); var bmpOpt = new BMPSaveOptions(); // BMP形式オプション bmpOpt.rleCompression = true; // RLE圧縮 activeDocument.saveAs(savefile, bmpOpt, true, Extension.LOWERCASE);