A command line tool that creates color palettes from images using the median cut algorithm.
```sh iris 0.1.0 A command line tool that creates color palettes from images using the median cut algorithm.
USAGE:
iris [OPTIONS] --file-name
ARGS:
OPTIONS:
-f, --file-name
```
```sh iris -f Lenna.png -i 3 html
Image: (512, 512) - Rgb8 Finished reading 262144 pixel values in 71 ms. Generating palette... Finished generating palette in 1550 ms.
{ R: 230, G: 191, B: 167, A: 255 } { R: 205, G: 137, B: 137, A: 255 } { R: 227, G: 127, B: 108, A: 255 } { R: 201, G: 115, B: 110, A: 255 } { R: 190, G: 86, B: 95, A: 255 } { R: 175, G: 67, B: 77, A: 255 } { R: 114, G: 46, B: 87, A: 255 } { R: 98, G: 23, B: 61, A: 255 }
```
I created this project for learning purposes.