pdfGetPageHeight

Get the height of the specified page.
double pdfGetPageHeight(PDFViewerHandle viewer, int page)
This function returns the height of the specified page.

The units for the returned value are points, where 1 point = 1/72 inch.

This function is equivalent to:

pdfGetPageBoxYMax(viewer, page, "crop") - pdfGetPageBoxYMin(viewer, page, "crop")
C:
double w, h; w = pdfGetPageWidth(viewer, pageNum); h = pdfGetPageHeight(viewer, pageNum);
pdfGetPageBoxXMin
pdfGetPageBoxYMin
pdfGetPageBoxXMax
pdfGetPageBoxYMax
pdfGetPageWidth