You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Performance is typically on par with or better than libpng.
15
14
16
-
The `pngcheck` utility is a small demonstration binary that checks and prints
17
-
metadata on every `.png` image provided via parameter. You can run it (for
18
-
example on the test directories) with
15
+
Includes an fast encoding mode powered by [fdeflate](https://crates.io/crates/fdeflate) that is dramatically faster than the fastest mode of libpng while *simultaneously* providing better compression ratio.
19
16
20
-
```bash
21
-
cargo run --release --example pngcheck ./tests/pngsuite/*
22
-
```
17
+
On nightly Rust compiler you can slightly speed up decoding of certain images as well as encoding even further by enabling the `unstable` feature of this crate.
0 commit comments