pub struct Image<Layers> {
pub attributes: ImageAttributes,
pub layer_data: Layers,
}
Expand description
The complete exr image.
Layers
can be either a single Layer
or Layers
.
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: Layers
The layers contained in the image file.
Can be either a single Layer
or a list of layers.
Implementations
sourceimpl<'s, LayerData: 's> Image<LayerData> where
LayerData: WritableLayers<'s>,
impl<'s, LayerData: 's> Image<LayerData> where
LayerData: WritableLayers<'s>,
sourcepub fn new(image_attributes: ImageAttributes, layer_data: LayerData) -> Self
pub fn new(image_attributes: ImageAttributes, layer_data: LayerData) -> Self
Create an image with one or multiple layers. The layer can be a Layer
, or Layers
small vector, or Vec<Layer>
or &[Layer]
.
sourceimpl<'s, Channels: 's> Image<Layers<Channels>> where
Channels: WritableChannels<'s>,
impl<'s, Channels: 's> Image<Layers<Channels>> where
Channels: WritableChannels<'s>,
sourcepub fn from_layers(
image_attributes: ImageAttributes,
layer_data: impl Into<Layers<Channels>>
) -> Self
pub fn from_layers(
image_attributes: ImageAttributes,
layer_data: impl Into<Layers<Channels>>
) -> Self
Create an image with multiple layers. The layer can be a Vec<Layer>
or Layers
(a small vector).
sourceimpl<'s, ChannelData: 's> Image<Layer<ChannelData>> where
ChannelData: WritableChannels<'s>,
impl<'s, ChannelData: 's> Image<Layer<ChannelData>> where
ChannelData: WritableChannels<'s>,
sourcepub fn from_layer(layer: Layer<ChannelData>) -> Self
pub fn from_layer(layer: Layer<ChannelData>) -> Self
Uses the display position and size to the channel position and size of the layer.
sourcepub fn from_encoded_channels(
size: impl Into<Vec2<usize>>,
encoding: Encoding,
channels: ChannelData
) -> Self
pub fn from_encoded_channels(
size: impl Into<Vec2<usize>>,
encoding: Encoding,
channels: ChannelData
) -> Self
Uses empty attributes.
sourcepub fn from_channels(
size: impl Into<Vec2<usize>>,
channels: ChannelData
) -> Self
pub fn from_channels(
size: impl Into<Vec2<usize>>,
channels: ChannelData
) -> Self
Uses empty attributes and fast compression.
sourceimpl Image<NoneMore>
impl Image<NoneMore>
sourcepub fn empty(attributes: ImageAttributes) -> Self
pub fn empty(attributes: ImageAttributes) -> Self
Create an empty image, to be filled with layers later on. Add at least one layer to obtain a valid image.
Call with_layer(another_layer)
for each layer you want to add to this image.
sourceimpl<'s, InnerLayers: 's> Image<InnerLayers> where
InnerLayers: WritableLayers<'s>,
impl<'s, InnerLayers: 's> Image<InnerLayers> where
InnerLayers: WritableLayers<'s>,
sourcepub fn with_layer<NewChannels>(
self,
layer: Layer<NewChannels>
) -> Image<Recursive<InnerLayers, Layer<NewChannels>>> where
NewChannels: 's + WritableChannels<'s>,
pub fn with_layer<NewChannels>(
self,
layer: Layer<NewChannels>
) -> Image<Recursive<InnerLayers, Layer<NewChannels>>> where
NewChannels: 's + WritableChannels<'s>,
Add another layer to this image. The layer type does not have to equal the existing layers in this image.
Trait Implementations
sourceimpl<C> ValidateResult for Image<C> where
C: ValidateResult,
impl<C> ValidateResult for Image<C> where
C: ValidateResult,
sourcefn validate_result(
&self,
other: &Self,
options: ValidationOptions,
location: String
) -> ValidationResult
fn validate_result(
&self,
other: &Self,
options: ValidationOptions,
location: String
) -> ValidationResult
Compare self with the other. Exceptional behaviour: Read more
sourcefn assert_equals_result(&self, result: &Self)
fn assert_equals_result(&self, result: &Self)
Compare self with the other. Panics if not equal. Read more
sourceimpl<'img, WritableLayers> WritableImage<'img, WritableLayers> for &'img Image<WritableLayers>
impl<'img, WritableLayers> WritableImage<'img, WritableLayers> for &'img Image<WritableLayers>
sourcefn write(self) -> WriteImageWithOptions<'img, WritableLayers, fn(_: f64)>
fn write(self) -> WriteImageWithOptions<'img, WritableLayers, fn(_: f64)>
Create a temporary writer which can be configured and used to write the image to a file.
impl<Layers> StructuralPartialEq for Image<Layers>
Auto Trait Implementations
impl<Layers> RefUnwindSafe for Image<Layers> where
Layers: RefUnwindSafe,
impl<Layers> Send for Image<Layers> where
Layers: Send,
impl<Layers> Sync for Image<Layers> where
Layers: Sync,
impl<Layers> Unpin for Image<Layers> where
Layers: Unpin,
impl<Layers> UnwindSafe for Image<Layers> where
Layers: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more