pub unsafe extern "C-unwind" fn JxlDecoderGetBasicInfo(
dec: *const JxlDecoder,
info: *mut JxlBasicInfo,
) -> JxlDecoderStatusExpand description
Outputs the basic image information, such as image dimensions, bit depth and
all other JxlBasicInfo fields, if available.
§Parameters
dec: decoder objectinfo: struct to copy the information into, orNULLto only check whether the information is available through the return value.
§Returns
JxlDecoderStatus::Successif the value is availableJxlDecoderStatus::NeedMoreInputif not yet availableJxlDecoderStatus::Errorin case of other error conditions.