Image processing utilities
https://docs.rs/image-utils/
```rust extern crate image_utils;
use std::path::Path; use image_utils::info;
fn main() { let inf = info(&Path::new("test.jpg")).unwrap(); println!("{:?}", inf); } ```
```rust extern crate image_utils;
use std::path::Path; use image_utils::crop;
fn main() { crop(&Path::new("test.jpg"), 10, 10, 100, 100, &Path::new("cropped.jpg")).unwrap(); } ```
```rust extern crate image_utils;
use std::path::Path; use image_utils::resize;
fn main() { resize(&Path::new("test.jpg"), 200, 200, &Path::new("resized.jpg")).unwrap(); } ```
bash
cargo test