Type Alias exr::image::RgbaImage

source ·
pub type RgbaImage<Storage> = PixelImage<Storage, RgbaChannels>;
Expand description

This image type contains a single layer containing a user-defined type of rgba pixels.

Aliased Type§

struct RgbaImage<Storage> {
    pub attributes: ImageAttributes,
    pub layer_data: Layer<SpecificChannels<Storage, (ChannelDescription, ChannelDescription, ChannelDescription, Option<ChannelDescription>)>>,
}

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, (ChannelDescription, ChannelDescription, ChannelDescription, Option<ChannelDescription>)>>

The layers contained in the image file. Can be either a single Layer or a list of layers.