pub unsafe extern "C" fn fz_new_buffer_from_page_with_format(
    ctx: *mut fz_context,
    page: *mut fz_page,
    format: *const c_char,
    options: *const c_char,
    transform: fz_matrix,
    cookie: *mut fz_cookie
) -> *mut fz_buffer
Expand description

Returns an fz_buffer containing a page after conversion to specified format.

page: The page to convert. format, options: Passed to fz_new_document_writer_with_output() internally. transform, cookie: Passed to fz_run_page() internally.