Gets/Sets image quality value.
Long (percent)
The allowed value range is from 5 to 100 with 100 being the
highest quality.
Note: This property is used only when the ImageCompression
property is set to either JPEG or JPEG 2000.
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"