GIF en- and decoder written in Rust (API Documentation).
This library provides all functions necessary to de- and encode GIF files.
The high level interface consists of the two types
Encoder
and Decoder
.
rust
// Open the file
use std::fs::File;
let input = File::open("tests/samples/sample_1.gif").unwrap();
// Configure the decoder such that it will expand the image to RGBA.
let mut options = gif::DecodeOptions::new();
options.set_color_output(gif::ColorOutput::RGBA);
// Read the file header
let mut decoder = options.read_info(input).unwrap();
while let Some(frame) = decoder.read_next_frame().unwrap() {
// Process every frame
}
The encoder can be used to save simple computer generated images:
```rust use gif::{Frame, Encoder, Repeat}; use std::fs::File; use std::borrow::Cow;
let colormap = &[0xFF, 0xFF, 0xFF, 0, 0, 0]; let (width, height) = (6, 6); let beaconstates = [[ 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, ], [ 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, ]]; let mut image = File::create("target/beacon.gif").unwrap(); let mut encoder = Encoder::new(&mut image, width, height, colormap).unwrap(); encoder.setrepeat(Repeat::Infinite).unwrap(); for state in &beaconstates { let mut frame = Frame::default(); frame.width = width; frame.height = height; frame.buffer = Cow::Borrowed(&*state); encoder.writeframe(&frame).unwrap(); } ```
Frame::from_*
can be used to convert a true color image to a paletted
image with a maximum of 256 colors:
```rust use std::fs::File;
// Get pixel data from some source
let mut pixels: Vec