yaged (yet another gif encoder decoder)

Gif encoder/decoder based on GIF89a specification.

Examples

Decode a gif file using ColorMap color output mode. rust let file = &mut File::open(Path::new("./ascii-gif-example.gif")).unwrap(); let gif = decode(file, ColorOutput::ColorMap).unwrap();

Decode a gif file using RGBA color output mode. rust let file = &mut File::open(Path::new("./ascii-gif-example.gif")).unwrap(); let gif = decode(file, ColorOutput::RGBA).unwrap();

Still work to do