Crates.io | color_processing |
lib.rs | color_processing |
version | 0.6.3 |
source | src |
created_at | 2018-11-17 11:30:47.96085 |
updated_at | 2024-11-04 19:58:20.69318 |
description | 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. |
homepage | https://github.com/ringostarr80/rust-color-processing |
repository | https://github.com/ringostarr80/rust-color-processing |
max_upload_size | |
id | 97216 |
size | 209,088 |
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.
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());
// ...
}
For the latest documentation and examples, please go to https://docs.rs/color_processing.
If you have suggestions or found an error, feel free to open an issue or create a pull request on github.