blob: 83b0b77411e0353a36c4cb304f02f83d71236bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
mod color;
mod gif;
mod lzw;
pub mod block;
pub mod writer;
pub use color::Color;
pub use gif::Gif;
pub use lzw::LZW;
//TODO: Be sure to check that fields in LSD and Img. Desc. that were reserved
//in 87a aren't set if version is 87a, or that we return a warning, etc. Just
//remember about this.
//bottom of page 24 in 89a
|