Crate image_noise[][src]

Expand description

image-noise

Creates A simple perlin noise texture in Rust.

image-noise = "0.1.0"
let image = image_noise::noise_image(1000, 10);

let mut file = File::create("image.png").unwrap();

let mut bytes: Vec<u8> = Vec::new();
image
    .write_to(&mut bytes, image::ImageOutputFormat::Png)
    .expect("Can write to png");
 
file.write_all(&bytes).unwrap();

Functions

Create a noise image with the size in width and height, and the resolution of the noise.