png_codec 0.1.1

A minimal pure Rust PNG encoder
Documentation
1
2
3
4
5
6
7
8
9
10
//! PNG file encoding

mod chunk_enc;
mod error;
pub(super) mod filter;
mod step_enc; // Share with unfilter

pub(crate) use error::{Error, Result};
pub(crate) use filter::FilterStrategy;
pub(crate) use step_enc::StepEnc;