writePageBitmap2

Write a page to an image file.
writePageBitmap2([in] int page, [in] double hDPI, [in] double vDPI, [in] int color, [in] int format, [in] BSTR fileName)
This function converts a PDF page to an image file on disk. It is identical to writePageBitmap, except that it allows the horizontal and vertical resolutions to be controlled independently.

The arguments are:

Note that the color settings and image file formats are read-only properties on the COM component, so you'll need to use pdf.imageMono, pdf.imageFileBMP, etc.

The imageDevNToCMYK mode produces CMYK output like imageCMYK, but does the rasterization in DeviceN (CMYK + spot colors) so overprint previews will be more accurate.

The imageDevNToRGB mode is similar to imageDevNToCMYK, but converts to RGB output.

The imageGrayToMono mode does the rasterization in 8-bit grayscale and converts to 1-bit monochrome at the end. This is useful for files that use transparency – because 1-bit monochrome mode doesn't support transparency.

CMYK output is only available in TIFF format.

VB:
' convert page 5 to a 144x72 dpi color TIFF file pdf.writePageBitmap2 5, 72, pdf.imageRGB, pdf.imageFileTIFF, "test1.tiff"