pub fn lab_to_srgb(
src: &[f32],
src_stride: u32,
dst: &mut [u8],
dst_stride: u32,
width: u32,
height: u32,
)Expand description
This function converts LAB to RGB. This is much more effective than naive direct transformation
ยงArguments
src- A slice contains LAB datasrc_stride- Bytes per row for src data.width- Image widthheight- Image heightdst- A mutable slice to receive RGB datadst_stride- Bytes per row for dst data