• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benches/H03-May-2022-4736

examples/H03-May-2022-586539

src/H03-May-2022-3,1432,467

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D18-Apr-202074 65

CHANGES.mdH A D18-Apr-20201.1 KiB4327

Cargo.lockH A D18-Apr-202065 KiB1,4321,280

Cargo.tomlH A D18-Apr-20201.6 KiB6553

Cargo.toml.orig-cargoH A D18-Apr-2020920 5042

LICENSE-APACHEH A D12-Feb-201910.6 KiB202169

LICENSE-MITH A D12-Feb-20191 KiB2622

README.mdH A D09-Oct-20191.5 KiB4027

README.md

1# PNG Decoder/Encoder
2[![Build Status](https://travis-ci.org/image-rs/image-png.svg?branch=master)](https://travis-ci.org/image-rs/image-png)
3[![Documentation](https://docs.rs/png/badge.svg)](https://docs.rs/png)
4[![Crates.io](https://img.shields.io/crates/v/png.svg)](https://crates.io/crates/png)
5![Lines of Code](https://tokei.rs/b1/github/image-rs/image-png)
6[![License](https://img.shields.io/crates/l/png.svg)](https://github.com/image-rs/image-png)
7[![fuzzit](https://app.fuzzit.dev/badge?org_id=image-rs)](https://app.fuzzit.dev/orgs/image-rs/dashboard)
8
9PNG decoder/encoder in pure Rust.
10
11It contains all features required to handle the entirety of [the PngSuite by
12Willem van Schack][PngSuite].
13
14[PngSuite]: http://www.schaik.com/pngsuite2011/pngsuite.html
15
16## pngcheck
17
18The `pngcheck` utility is a small demonstration binary that checks and prints
19metadata on every `.png` image provided via parameter. You can run it (for
20example on the test directories) with
21
22```bash
23cargo run --release --example pngcheck ./tests/pngsuite/*
24```
25
26## License
27
28Licensed under either of
29
30 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
31 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
32
33at your option.
34
35### Contribution
36
37Unless you explicitly state otherwise, any contribution intentionally submitted
38for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
39additional terms or conditions.
40