Function mupdf_sys::fz_load_links

source ยท
pub unsafe extern "C" fn fz_load_links(
    ctx: *mut fz_context,
    page: *mut fz_page
) -> *mut fz_link
Expand description

Load the list of links for a page.

Returns a linked list of all the links on the page, each with its clickable region and link destination. Each link is reference counted so drop and free the list of links by calling fz_drop_link on the pointer return from fz_load_links.

page: Page obtained from fz_load_page.