Module exr::image::read::layers

source ·
Expand description

How to read either a single or a list of layers.

Structs

  • Processes pixel blocks from a file and accumulates them into a list of layers. For example, ChannelsReader can be [SpecificChannelsReader] or [AnyChannelsReader<FlatSamplesReader>].
  • Processes pixel blocks from a file and accumulates them into a single layers, using only the first. For example, ChannelsReader can be SpecificChannelsReader or AnyChannelsReader<FlatSamplesReader>.
  • Processes pixel blocks from a file and accumulates them into a single layers. For example, ChannelsReader can be SpecificChannelsReader or AnyChannelsReader<FlatSamplesReader>.
  • Specify to read all channels, aborting if any one is invalid. [ReadRgbaChannels] or [ReadAnyChannels<ReadFlatSamples>].
  • Specify to read only the first layer which meets the previously specified requirements

Traits