FPDF_GetPageHeightF function

  1. @Native<Float Function(FPDF_PAGE)>(FPDF_PAGE)>()
double FPDF_GetPageHeightF(
  1. FPDF_PAGE page
)

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

@ffi.Native<ffi.Float Function(FPDF_PAGE)>()
external double FPDF_GetPageHeightF(FPDF_PAGE page);