[][src]Module exr::image

Read and write an exr image. Use exr::image::simple or exr::image::full for actually reading a complete image.

Modules

read_options

A collection of preset ReadOptions values.

rgba

Read and write a simple RGBA image. This module loads the RGBA channels of any layer that contains RGB or RGBA channels. Returns Error::Invalid if none can be found in the file.

simple

Read and write all supported aspects of an exr image, excluding deep data and multi-resolution levels. Use exr::image::full if you do need deep data or resolution levels.

write_options

A collection of preset WriteOptions values.

Structs

ReadOptions

Specify how to read an exr image.

WriteOptions

Specify how to write an exr image.

Traits

OnReadProgress

Called occasionally when reading a file. Implemented by any closure that matches |progress: f32| -> UnitResult.

OnWriteProgress

Called occasionally when writing a file. Implemented by any closure that matches |progress: f32, bytes_written: usize| -> UnitResult.