Luv

Tools for converting colours between sRGB, L*u*v* and LCh(uv) colour spaces and comparing differences in colour.

sRGB colors, for this crate at least, are considered to be composed of u8 values from 0 to 255, while L*u*v* colors are represented by its own struct that uses f32 values. The crate is biased towards sRGB thus it also assumes that L*u*v* uses D65 reference white point.

Usage

Converting single values

To convert a single value, use one of the functions

rust let pink = luv::Luv::from_rgb(&[253, 120, 138]); assert_eq!(luv::Luv { l: 66.637695, u: 93.02938, v: 9.430316 }, pink);

Converting multiple values

To convert slices of values

```rust let rgbs = vec![ [0xFF, 0x69, 0xB6], [0xE7, 0x00, 0x00], [0xFF, 0x8C, 0x00], [0xFF, 0xEF, 0x00], [0x00, 0x81, 0x1F], [0x00, 0xC1, 0xC1], [0x00, 0x44, 0xFF], [0x76, 0x00, 0x89], ];

let luvs = luv::rgbstoluvs(&rgbs); ```

```rust use luv::rgbbytesto_luvs;

let rgbs = vec![ 0xFF, 0x69, 0xB6, 0xE7, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x81, 0x1F, 0x00, 0xC1, 0xC1, 0x00, 0x44, 0xFF, 0x76, 0x00, 0x89, ];

let luvs = rgbbytesto_luvs(&rgbs); ```

Other crates

The design — and to some degree code — of this crate has been based on the lab crate which provides routines for converting colours between sRGB, L*a*\b and LCh(ab) colour spaces.

For conversion between sRGB and XYZ colour spaces this crate relies on the srgb crate.