giffy

Build Status crates.io

A simple GIF decoder written in Rust.

Usage

```rust use giffy; use std::fs::File;

let mut src = File::open("").expect("File not found"); match giffy::load(&mut src) { Ok(gif) => { for frame in gif.image_frames { // do something with the frame } }

Err(e) => {
    eprintln!("Error: {}", e);
}

} ```

Try it

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>.

Disclaimer

At this time, this decoder is meant to be for educational/learning purposes only.