image 0.13.0

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//!  Decoding of Radiance HDR Images
//!
//!  A decoder for Radiance HDR images
//!
//!  # Related Links
//!  * http://radsite.lbl.gov/radiance/refer/filefmts.pdf
//!  * http://www.graphics.cornell.edu/~bjw/rgbe/rgbe.c
//!

extern crate scoped_threadpool;

mod hdr_decoder;
mod hdr_encoder;

pub use self::hdr_decoder::*;
pub use self::hdr_encoder::*;