[][src]Crate yaged

Gif encoder/decoder bases on GIF89a specification.

Decoding

use {std::fs::File, std::path::Path};

let file = &mut File::open(Path::new("./ascii-gif-example.gif")).unwrap();
let gif = yaged::decoder::decode(file, yaged::decoder::ColorOutput::ColorMap).unwrap();

Modules

decoder
types