Functions to get a weighted color between 2 colors. For example, to generate a gradient between 2 colors.
This crate is fully compatible with Cargo. Just add it to your Cargo.toml
:
toml
[dependencies]
color_scaling = "*"
```rust extern crate color_scaling; extern crate image;
use colorscaling::scalergb; use image::Rgb;
fn main() {
let white : Rgb
let light_orange = scale_rgb(&white, &orange, 0.8_f64);
println!("light_orange={:?}", light_orange);
} ```