pub unsafe extern "C" fn fz_load_chapter_page(
    ctx: *mut fz_context,
    doc: *mut fz_document,
    chapter: c_int,
    page: c_int
) -> *mut fz_page
Expand description

Load a page.

After fz_load_page is it possible to retrieve the size of the page using fz_bound_page, or to render the page using fz_run_page_*. Free the page by calling fz_drop_page.

chapter: chapter number, 0 is the first chapter of the document. number: page number, 0 is the first page of the chapter.