Struct exr::meta::header::ImageAttributes[][src]

pub struct ImageAttributes {
    pub display_window: IntegerBounds,
    pub pixel_aspect: f32,
    pub chromaticities: Option<Chromaticities>,
    pub time_code: Option<TimeCode>,
    pub other: HashMap<Text, AttributeValue>,
}

Includes mandatory fields like pixel aspect or display window which must be the same for all layers. For more attributes, see struct LayerAttributes.

Fields

display_window: IntegerBounds

The rectangle anywhere in the global infinite 2D space that clips all contents of the file.

pixel_aspect: f32

Aspect ratio of each pixel in this header.

chromaticities: Option<Chromaticities>

The chromaticities attribute of the image. See the Chromaticities type.

time_code: Option<TimeCode>

The time code of the image.

other: HashMap<Text, AttributeValue>

Contains custom attributes. Does not contain the attributes already present in the ImageAttributes. Contains only attributes that are standardized to be the same for all headers: chromaticities and time codes.

Implementations

impl ImageAttributes[src]

pub fn new(display_window: IntegerBounds) -> Self[src]

Set the display position and size of this image.

pub fn with_size(size: impl Into<Vec2<usize>>) -> Self[src]

Set the display position to zero and use the specified size for this image.

Trait Implementations

impl Clone for ImageAttributes[src]

impl Debug for ImageAttributes[src]

impl PartialEq<ImageAttributes> for ImageAttributes[src]

impl StructuralPartialEq for ImageAttributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.