FPDF_GetPageWidthF function

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

Experimental API Function: FPDF_GetPageWidthF Get page width. Parameters: page - Handle to the page. Returned by FPDF_LoadPage(). Return value: Page width (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_GetPageWidthF(FPDF_PAGE page);