yunter 0.1.0

convert from one color-space to another
Documentation

yunter

A Rust library to convert from one color-space to another.

Documentation can be found on http://docs.rs/yunter.

Origin of the name

yunter is named after Thomas Young and Richard S. Hunter, who worked on colour theory and the Hunter Lab color space.

Examples

extern crate yunter;

let rgb = Rgb::new(176, 57, 209);

let xyz: Xyz = rgb.into();

let lab: Lab = rgb.into();