| 値 | 内容 | 
|---|---|
| DownsampleMethod.AVERAGEDOWNSAMPLE | ダウンサンプリング(バイリニア法) | 
| DownsampleMethod.BICUBICDOWNSAMPLE | ダウンサンプリング(バイキュービック法) | 
| DownsampleMethod.NODOWNSAMPLE | ダウンサンプリングしない | 
| DownsampleMethod.SUBSAMPLE | サブサンプル(バイリニア法) | 
var opt=new PDFSaveOptions();
opt.colorDownsamplingMethod = DownsampleMethod.SUBSAMPLE;
var f=new File("~/Desktop/SamplePDF.pdf");
app.activeDocument.saveAs(f, opt);