pub type FlatImage = Image<Layers<AnyChannels<FlatSamples>>>;
Expand description
This image type contains the most common exr features and can represent almost any plain image. Does not contain resolution levels. Does not support deep data.
Aliased Type§
struct FlatImage {
pub attributes: ImageAttributes,
pub layer_data: SmallVec<[Layer<AnyChannels<FlatSamples>>; 2]>,
}
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: SmallVec<[Layer<AnyChannels<FlatSamples>>; 2]>
The layers contained in the image file.
Can be either a single Layer
or a list of layers.