16 releases
0.3.3 | Jan 1, 2022 |
---|---|
0.3.2 | Oct 19, 2021 |
0.2.9 | Sep 26, 2021 |
0.2.8 | May 4, 2021 |
0.1.1 | Jan 25, 2021 |
#593 in Images
76 downloads per month
2MB
744 lines
kagamijxl
Opinionated JPEG XL decoder/encoder library.
API
See the documentation.
Easiest use
let result = kagamijxl::decode_memory(vec);
result.frames[0].data
Advanced
let mut decoder = kagamijxl::Decoder::default();
decoder.need_color_profile = true;
let result = decoder.decode(vec);
(result.color_profile, result.frames[0].data)