image4 0.8.2

A no_std-friendly library for parsing and generation of Image4 images written in pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Contains the [`ImageRef`] and [`Image`] types that represent an Image4 container (an IMG4 file).

mod borrowed;
#[cfg(any(feature = "alloc", test))]
mod owned;

pub use borrowed::ImageRef;
#[cfg(any(feature = "alloc", test))]
pub use owned::Image;

#[cfg(test)]
mod tests;