A simple GIF decoder written in Rust.
```rust use giffy; use std::fs::File;
let mut src = File::open("
Err(e) => {
eprintln!("Error: {}", e);
}
} ```
cargo run --example example <GIF file path> <output folder path>
This example splits the <GIF file path>
into individual images and save it in the <output folder path>
.
At this time, this decoder is meant to be for educational/learning purposes only.