1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # image-noise
//! Creates A simple perlin noise texture in Rust.
//!
//! ```
//! image-noise = "0.1.0"
//! ```
//1
//! ```rust
//! 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();
//! ```
use ;
use PerlinNoise;
/// Create a noise image with the size in width and height, and the resolution of the noise.