Function photon_rs::filters::firenze

source ·
pub fn firenze(img: &mut PhotonImage)
Expand description

Apply a red hue, with increased contrast and brightness.

Arguments

  • img - A PhotonImage.

Example

use photon_rs::filters::firenze;
use photon_rs::native::open_image;

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