2个不稳定版本

0.2.0 2023年5月15日
0.1.0 2022年1月14日

#476 in 图像

MIT/Apache

13KB
202

TinyQOI

CI Crates.io Docs.rs embedded-graphics on Matrix

文档

嵌入式应用的QOI图像解码器。

tinyqoi是一个主要针对与embedded_graphics一起使用的QOI图像解码器。

访问https://qoiformat.org获取有关QOI格式的更多信息。

示例

一个Qoi图像可以被包装在嵌入式图形的Image中,以在支持Rgb888颜色的任何DrawTarget上显示

use tinyqoi::Qoi;
use embedded_graphics::{prelude::*, image::Image};

// Parse QOI image.
let data = include_bytes!("../tests/colors.qoi");
let qoi = Qoi::new(data).unwrap();

// Draw image to display.
Image::new(&qoi, Point::zero()).draw(&mut display).unwrap();

许可证

根据以下之一许可

供您选择。

贡献

除非您明确表示,否则根据Apache-2.0许可证定义的,任何有意提交以包含在作品中的贡献,都应如上所述双重许可,无需任何额外条款或条件。

依赖项

~3MB
~35K SLoC