image-qoi 0.1.0

Quote Ok Image format with interop with Image
Documentation

image-qoi

Quote Ok Image format support within the image crate.

Usage

let file = File::open("qoi_test_images/dice.qoi").unwrap();
let decoder = QoiDecoder::new(file).unwrap();
let image = DynamicImage::from_decoder(decoder).unwrap();