auto-palette 0.9.2

🎨 A Rust library that extracts prominent color palettes from images automatically.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod algorithm;
mod assert;
pub mod color;
mod error;
mod image;
mod math;
mod palette;
mod swatch;
mod theme;

pub use algorithm::Algorithm;
pub use error::Error;
pub use image::{filter::Filter, ImageData, ImageError, ImageResult, Rgba};
pub use math::FloatNumber;
pub use palette::Palette;
pub use swatch::Swatch;
pub use theme::Theme;