Type Alias exr::image::PixelImage
source · pub type PixelImage<Storage, Channels> = Image<Layer<SpecificChannels<Storage, Channels>>>;
Expand description
This image type contains a single layer containing a user-defined type of pixels.
Aliased Type§
struct PixelImage<Storage, Channels> {
pub attributes: ImageAttributes,
pub layer_data: Layer<SpecificChannels<Storage, Channels>>,
}
Fields§
§attributes: ImageAttributes
Attributes that apply to the whole image file. These attributes appear in each layer of the file. Excludes technical meta data. Each layer in this image also has its own attributes.
layer_data: Layer<SpecificChannels<Storage, Channels>>
The layers contained in the image file.
Can be either a single Layer
or a list of layers.