dominant_color 0.2.3

Simple image color extractor written in Rust with no external dependencies
Documentation

Simple image color extractor written in Rust with no external dependencies

Status:

Build Status

Demo:

http://dominant-color-demo.herokuapp.com/

Usage:

extern crate dominant_color;
extern crate image;

use std::path;

fn main() {
    let image = image::open(&path::Path::new("docs/Fotolia_45549559_320_480.jpg")).unwrap();
    let has_alpha = match image.color() {
        image::ColorType::RGBA(8) => true,
        _ => false,
    };
    let colors = dominant_color::get_colors(&image.to_bytes(), has_alpha);
    println!("{:?}", colors);
}

Example image:

Image

Extracted colors:

Colors