image-qoi
Quote Ok Image format support within the image crate.
Usage
let file = open.unwrap;
let decoder = new.unwrap;
let image = from_decoder.unwrap;
Quote Ok Image format support within the image crate.
let file = File::open("qoi_test_images/dice.qoi").unwrap();
let decoder = QoiDecoder::new(file).unwrap();
let image = DynamicImage::from_decoder(decoder).unwrap();