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")?;
// encode an animated gif at 10 frames per second let gif = engiffen(&images, 10, None)?; gif.write(&mut output); ```
rust
// Optionally specify how many pixels of each frame should be sampled
// when computing the gif's palette. This value reduces the amount of
// sampling work to 1/9th of what it normally would, by only sampling
// every 3rd pixel on every 3rd row (i.e. pixels lying on a 3x3 grid).
let gif = engiffen(&images, 10, Some(3));
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.