PDFHorizontalResolution

Sets the output horizontal resolution for PDFDocumentToImage.

Member of namespace

Convert

Syntax

bool PDFHorizontalResolution (int p_iVal)

Parameters

p_iVal
Type: int

Parameters

p_iVal : A positive numeric value for the horizontal resolution in dots per inch (DPI).

Returns

Always True.

Level

Page level.

Details

Sets the horizontal resolution for PDF conversion to TIFF. It is recommended that the horizontal and vertical resolutions be kept the same, creating an isotropic image. If this action is not called, the default resolution of 200 is used. This action must be called before PDFDocumentToImage.
Example:
PDFBitDepth(1)
PDFHorizontalResolution(200)
PDFVerticalResolution(200)
PDFDocumentToImage()