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