exr 0.7.1

Read and write OpenEXR files without any unsafe code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

// exr imports
extern crate exr;
use exr::prelude::*;

/// Read an image and print information about the image into the console.
/// Uses multicore decompression where appropriate.
fn main() {
    let image = simple::Image::read_from_file(
        "./testout/noisy.exr",
        read_options::high()
    ).unwrap();

    println!("image was read: {:#?}", image);
}