png_codec 0.1.1

A minimal pure Rust PNG encoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Low-level PNG API
//!
//! A PNG file consists of a sequence of [`Chunk`](enum.Chunk.html)s in a
//! specific order.

mod idat;
mod iend;
mod ihdr;

pub(crate) use self::{
    idat::ImageData,
    iend::ImageEnd,
    ihdr::{ColorType, ImageHeader},
};