diff options
author | pommicket <pommicket@gmail.com> | 2023-09-05 13:15:32 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-09-05 13:59:13 -0400 |
commit | 19f2fdc726c531d5bbc05fbd0ea1445f61208ffb (patch) | |
tree | ffe53e8d024e1d7eb3e8451cf16816cd00125875 /README.md | |
parent | 037d3dd675eba2ebee9fce7a79eaebc7c7442d73 (diff) |
fix conversion bugs
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ Tiny Rust PNG decoder. This decoder can be used without `std` or `alloc` by disabling the `std` feature (enabled by default). -Also it has tiny code size (e.g. 5x smaller `.wasm.gz` size compared to the `png` crate — see `check-size.sh`). +Also it has tiny code size (e.g. >8x smaller `.wasm.gz` size compared to the `png` crate — see `check-size.sh`). ## Goals @@ -18,7 +18,7 @@ Also it has tiny code size (e.g. 5x smaller `.wasm.gz` size compared to the `png ## Non-goals - Adam7 interlacing (increases code complexity and interlaced PNGs are rare anyways) -- Significantly sacrificing code size for speed (except maybe with a feature enabled) +- Significantly sacrificing code size/complexity for speed - Checking block CRCs (increases code complexity and there’s already Adler32 checksums for IDAT chunks) |