Enables/Disables image downsizing.
Boolean
If the this property is set to True, then the resolution of images are reduced to the DPI value specified in the ImageDownsizeResolution property.
Set oPrinter = CreateObject("easyPDF.Printer.7")
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"