Generates gifs from image sequences.
Source frame, generated gif, and a gif from Photoshop
```bash
hello.gif
engiffen *.bmp -f 20 -o hello.gif
engiffen -r file01.bmp file20.bmp -o hello.gif
file9
file10
, the resulting gif will not be in that order.engiffen -r file01.bmp file20.bmp -o hello.gif -q naive
engiffen -r file01.bmp file100.bmp -o hello.gif -s 2
engiffen *.bmp > output.gif
engiffen *.bmp ```
```rust extern crate engiffen;
use engiffen::{load_images, engiffen, Gif, Quantizer}; 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, Quantizer::NeuQuant(2))?; 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));
To print timing info to STDERR, compile with the debug-stderr
feature
``` $ cargo install engiffen --features debug-stderr
$ engiffen *.tif -f 15 -s 10 > out.gif Checked image dimensions in 0 ms. Pushed all frame pixels in 469 ms. Computed palette in 67 ms. Mapped pixels to palette in 3443 ms. Wrote to stdout in 5415 ms ```
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.