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