pub unsafe extern "C" fn FPDF_LoadPage(
    document: FPDF_DOCUMENT,
    page_index: c_int
) -> FPDF_PAGE
Expand description

Function: FPDF_LoadPage Load a page inside the document. Parameters: document - Handle to document. Returned by FPDF_LoadDocument page_index - Index number of the page. 0 for the first page. Return value: A handle to the loaded page, or NULL if page load fails. Comments: The loaded page can be rendered to devices using FPDF_RenderPage. The loaded page can be closed using FPDF_ClosePage.