pub fn desaturate_hsv(img: &mut PhotonImage, level: f32)
Expand description
Desaturate the image by a specified amount in the HSV colour space.
§Arguments
img
- A PhotonImage.level
- Float value from 0 to 1 representing the level to which to desaturate the image by. Thelevel
must be from 0 to 1 in floating-point,f32
format. Desaturating by 80% would be represented by alevel
of 0.8
§Example
// For example to desaturate an image by 10% in the HSV colour space:
use photon_rs::colour_spaces::desaturate_hsv;
use photon_rs::native::open_image;
// Open the image. A PhotonImage is returned.
let mut img = open_image("img.jpg").expect("File should open");
desaturate_hsv(&mut img, 0.1_f32);