FPDF_GetPageHeightF method
Experimental API Function: FPDF_GetPageHeightF Get page height. Parameters: page - Handle to the page. Returned by FPDF_LoadPage(). Return value: Page height (excluding non-displayable area) measured in points. One point is 1/72 inch (around 0.3528 mm) Comments: Changing the rotation of |page| affects the return value.
Implementation
double FPDF_GetPageHeightF(FPDF_PAGE page) {
return _FPDF_GetPageHeightF(page);
}