image-diff 0.1.0

An image diff library written in rust
Documentation
## image-diff
An image diff library written in rust

### Definition

``` rust
pub fn diff(before: &DynamicImage, after: &DynamicImage) -> Result<DynamicImage>
```

### Usage

```toml
[dependencies]
image = "0.23.4"
image-diff = "0.1.0"
```

``` rust
let before = image::open("before.png");
let after = image::open("after.png");
let image_diff = diff(&before, &after).unwrap();
image_diff.save("image_diff.png");
```