FPDF_GetPageHeight function

  1. @Native<Double Function(FPDF_PAGE)>(FPDF_PAGE)>()
double FPDF_GetPageHeight(
  1. FPDF_PAGE page
)

Function: FPDF_GetPageHeight 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) Note: Prefer FPDF_GetPageHeightF() above. This will be deprecated in the future. Comments: Changing the rotation of |page| affects the return value.

Implementation

@ffi.Native<ffi.Double Function(FPDF_PAGE)>()
external double FPDF_GetPageHeight(FPDF_PAGE page);