Generates gifs from image sequences.
Source frame, generated gif, and a gif from Photoshop
```bash
hello.gif
engiffen *.bmp -f 20 -o hello.gif
out.gif
(the default output path)engiffen -r file01.jpg file20.jpg
file9
file10
, the resulting gif will not be in that order.```
```rust extern crate engiffen;
use engiffen::{load_images, engiffen, Gif}; use std::fs::File;
let paths = vec!["vector", "of", "file", "paths", "on", "disk"]; let images = load_images(&paths); let mut output = File::create("output.gif")?;
let gif = engiffen(&images, 10)?; // encode an animated gif at 10 frames per second gif.write(&mut output); ```
Incremental frame processing
Accept a stream of frames from a server to process individually as they arrive. Put off sorting the final palette and compiling the gif until finished.