resolution

書式

ExportOptionsPhotoshopObject.resolution

説明

解像度を示します。72.0〜2400.0まで指定できます。初期値は150.0となっています。
var savefile=new File("~/Desktop/exp.psd");
var exportOptions = new ExportOptionsPhotoshop();
exportOptions.resolution = 96;
app.activeDocument.exportFile(savefile, ExportType.PHOTOSHOP, exportOptions);

目次に戻る