Gets/Sets image downsize resolution.
Long (DPI)
If the ImageDownsizing
property is set to True, then the resolution of images are
reduced to the DPI value specified in this property.
The allowed value range is from 10 to 600.
Set oPrinter = CreateObject("easyPDF.Printer.6")
Set oPrintJob = oPrinter.PrintJob
Set oPDFSetting = oPrintJob.PDFSetting
oPDFSetting.ImageCompression = PRN_IMAGE_COMPRESS_JPEG
oPDFSetting.ImageQuality = 85
oPDFSetting.ImageDownsizing = True
oPDFSetting.ImageDownsizeResolution = 300
oPrintJob.PrintOut "C:\input.doc", "C:\output.pdf"