FPDF_GetPageWidthF method
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
double FPDF_GetPageWidthF(FPDF_PAGE page) {
return _FPDF_GetPageWidthF(page);
}