JxlDecoderGetBasicInfo

Function JxlDecoderGetBasicInfo 

Source
pub unsafe extern "C-unwind" fn JxlDecoderGetBasicInfo(
    dec: *const JxlDecoder,
    info: *mut JxlBasicInfo,
) -> JxlDecoderStatus
Expand description

Outputs the basic image information, such as image dimensions, bit depth and all other JxlBasicInfo fields, if available.

§Parameters

  • dec: decoder object
  • info: struct to copy the information into, or NULL to only check whether the information is available through the return value.

§Returns