pub fn hue_rotate_lch(img: &mut PhotonImage, degrees: f32)
Expand description

Shift hue by a specified number of degrees in the LCh colour space.

Arguments

  • img - A PhotonImage.
  • mode - A float value from 0 to 1 which is the amount to shift the hue by, or hue rotate by.

Example

// For example to hue rotate/shift the hue by 120 degrees in the HSL colour space:
use photon_rs::colour_spaces::hue_rotate_lch;
use photon_rs::native::open_image;

// Open the image. A PhotonImage is returned.
let mut img = open_image("img.jpg").expect("File should open");
hue_rotate_lch(&mut img, 120_f32);