pub fn duotone_lilac(img: &mut PhotonImage)
Expand description

Duotone effect with a lilac hue

Arguments

  • img - A PhotonImage.

Example

use photon_rs::filters::duotone_lilac;
use photon_rs::native::open_image;

let mut img = open_image("img.jpg").expect("File should open");
duotone_lilac(&mut img);