[][src]Function photon::colour_spaces::lighten_hsl

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

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

Arguments

Example

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