Image processing utilities
Requires ImageMagick installed
```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() { let success = crop(&Path::new("test.jpg"), 10, 10, 100, 100, &Path::new("cropped.jpg")).unwrap(); println!("{:?}", success); } ```
```rust extern crate image_utils;
use std::path::Path; use image_utils::resize;
fn main() { let success = resize(&Path::new("test.jpg"), 200, 200, &Path::new("resized.jpg")).unwrap(); println!("{:?}", success); } ```
bash
cargo test