zune-core 0.2.1

Core utilities for image processing in the zune family of crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A simple implementation of a bytestream reader
//! and writer.
//!
//! This module contains two main structs that help in
//! byte reading and byte writing
//!
//! Useful for a lot of image readers and writers, it's put
//! here to minimize code reuse
pub use reader::ZByteReader;
pub use writer::ZByteWriter;

mod reader;
mod writer;