Function photon_rs::filters::neue

source ·
pub fn neue(photon_image: &mut PhotonImage)
Expand description

Solarization on the Blue channel.

Arguments

  • img - A PhotonImage.

Example

use photon_rs::filters::neue;
use photon_rs::native::open_image;

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