FPDF_LoadPage method
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.
Implementation
FPDF_PAGE FPDF_LoadPage(FPDF_DOCUMENT document, int page_index) {
return _FPDF_LoadPage(document, page_index);
}