#css-color #css #color #converter #color-string #format

color_processing

A library to handle colors easyly. It can parse a string in several formats (hex, rgb, cmyk, hwb, ...) into the Color-struct, modifying (grayscale, colorize, ...) and output into several string formats.

15 releases

0.6.2 Nov 30, 2022
0.6.1 Mar 14, 2022
0.6.0 Jul 15, 2020
0.5.0 Feb 23, 2020
0.1.2 Nov 25, 2018

#225 in Images

Download history 6/week @ 2023-11-27 5/week @ 2024-01-29 11/week @ 2024-02-19 86/week @ 2024-02-26 30/week @ 2024-03-04 15/week @ 2024-03-11

142 downloads per month
Used in 2 crates

CC0 license

140KB
2.5K SLoC

Purpose

This rust library is intended to do some processing of color values.
It can parse strings in different formats (known color names, hex, rgb, cmyk, hsl, ...) and output color values in different formats. It can also do some basic modifications, like grayscale and colorization.

This library cannot modify images.

Usage

To use color_processing, first add this to your Cargo.toml:

[dependencies]
color_processing = "0.6"

Next, add this to your crate:

extern crate color_processing;

use color_processing::Color;

fn main() {
    let red = Color::new_string("red").unwrap();
    assert_eq!("#FF0000", red.to_hex_string());

    let green = Color::new_string("rgb(0, 255, 0)").unwrap();
    assert_eq!("#00FF00", green.to_hex_string());

    let blue = Color::new_rgb(0, 0, 255);
    assert_eq!("rgb(0, 0, 255)", blue.to_rgb_string());

    // ...
}

Documentation

For the latest documentation and examples, please go to https://docs.rs/color_processing.

Miscellaneous

If you have suggestions or found an error, feel free to open an issue or create a pull request on github.

Dependencies

~2.2–3MB
~54K SLoC