| Crates.io | image-qoi |
| lib.rs | image-qoi |
| version | 0.1.1 |
| created_at | 2022-03-29 17:51:12.489538+00 |
| updated_at | 2022-03-30 06:23:13.076725+00 |
| description | Quote Ok Image format with interop with Image |
| homepage | |
| repository | https://github.com/conradludgate/image-qoi |
| max_upload_size | |
| id | 558676 |
| size | 13,936 |
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();