pngeq
is a simple command line image quantization tool to convert 24/32 bit
PNG images to 8 bit PNGs based on the
exoquant library.
Install rust (including cargo
), then:
cargo install pngeq
```
USAGE:
pngeq [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-d, --dither
ARGS:
K-Means optimization levels: none ('0'), optimize for smoothness ('s1' - 's3'), optimize for colors ('c1' - 'c3'). Defaults depend on NUM_COLORS: > 128 color: 's1', > 64 colors: 's2', >= 32 colors: 'c2', < 32 colors: 'c3' Available ditherers: 'none', 'ordered', 'fs', 'fs-checkered' ```