pixo 0.4.1

A minimal-dependency, high-performance image compression library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Compression algorithms.
//!
//! For background on how these pieces fit together, see
//! [`crate::guides::deflate`], [`crate::guides::huffman_coding`],
//! and [`crate::guides::lz77_compression`].

pub mod adler32;
pub mod crc32;
pub mod deflate;
pub mod huffman;
pub mod lz77;

pub use adler32::adler32;
pub use crc32::crc32;
pub use deflate::{deflate, deflate_packed, deflate_zlib, deflate_zlib_packed, Deflater};