// exr imports
externcrate exr;useexr::prelude::*;/// Read an image and print information about the image into the console.
/// Uses multicore decompression where appropriate.
fnmain(){let image =simple::Image::read_from_file("./testout/noisy.exr",read_options::high()).unwrap();println!("image was read: {:#?}", image);}