[][src]Function photon::colour_spaces::lighten_hsv

pub fn lighten_hsv(img: &mut PhotonImage, level: f32)

Lighten an image by a specified amount in the HSV colour space.

Arguments

Example

// For example to lighten an image by 10% in the HSV colour space:
use photon::color_spaces::lighten_hsv;
 
// Open the image. A PhotonImage is returned.
let img: PhotonImage = open_image("images/flowers.PNG");
 
lighten_hsv(&mut img, 0.1);