ImageDownsizing Property

Enables/Disables image downsizing.


Type: Boolean

Remarks

If the this property is set to True, then the resolution of images are reduced to the DPI value specified in the ImageDownsizeResolution property.

Example Usage


Set oPrinter = CreateObject("easyPDF.Printer.5")
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"

 

 

<<