Function mupdf_sys::fz_open_flated

source ·
pub unsafe extern "C" fn fz_open_flated(
    ctx: *mut fz_context,
    chain: *mut fz_stream,
    window_bits: c_int
) -> *mut fz_stream
Expand description

flated filter performs LZ77 decoding (inflating) of data read from the chained filter.

window_bits: How large a decompression window to use. Typically 15. A negative number, -n, means to use n bits, but to expect raw data with no header.