1个不稳定版本
0.1.0 | 2024年3月20日 |
---|
#23 在 #width-height
9KB
150 行
pngenc
编码PNG,不压缩
原因
嗯,你看,有时候PNG不需要压缩?你这是什么意思,你想通过网络发送它们?嗯,比如,你不得不编码一个PNG,但你只是运行一个压缩器?双倍的工作量,对吧?直接与压缩器通信?嗯,你现在让我明白了,但是,你知道的,也许你只是想为了好玩而编写一个未压缩的PNG?就像,PNG是临时的?也许你想把它们发送到你的iterm2苹果终端,不想浪费时间等待压缩?咦?是的,现在我明白你的意思了。
加速
你看,它确实做了很多加速
lib.rs
:
解压缩PNG编码包
pngenc::ode(
pngenc::RGB, // color type
(2144, 1424), // width and height
include_bytes!("../benches/cat"), // image to encode
&mut std::fs::File::create("hey.png").unwrap(), // output writer
).unwrap();
依赖项
~210KB