| Crates.io | yaged |
| lib.rs | yaged |
| version | 0.2.0 |
| created_at | 2020-10-17 08:38:13.385806+00 |
| updated_at | 2020-11-07 10:56:46.035401+00 |
| description | Yet another gif encoder decoder |
| homepage | https://github.com/visd0m/yaged |
| repository | https://github.com/visd0m/yaged |
| max_upload_size | |
| id | 301227 |
| size | 1,387,267 |
Gif encoder/decoder based on GIF89a specification.
Decode a gif file using ColorMap color output mode.
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.
let file = &mut File::open(Path::new("./ascii-gif-example.gif")).unwrap();
let gif = decode(file, ColorOutput::RGBA).unwrap();