Struct exr::image::Layer

source · []
pub struct Layer<Channels> {
    pub channel_data: Channels,
    pub attributes: LayerAttributes,
    pub size: Vec2<usize>,
    pub encoding: Encoding,
}
Expand description

A single Layer, including fancy attributes and compression settings. Channels can be either SpecificChannels or AnyChannels

Fields

channel_data: Channels

The actual pixel data. Either SpecificChannels or AnyChannels

attributes: LayerAttributes

Attributes that apply to this layer. May still contain attributes that should be considered global for an image file. Excludes technical meta data: Does not contain data window size, line order, tiling, or compression attributes. The image also has attributes, which do not differ per layer.

size: Vec2<usize>

The pixel resolution of this layer. See layer.attributes for more attributes, like for example layer position.

encoding: Encoding

How the pixels are split up and compressed.

Implementations

Sometimes called “data window”

Use samples_at if you can borrow from this layer

Lookup all channels of a single pixel in the image

Create a layer with the specified size, attributes, encoding and channels. The channels can be either SpecificChannels or AnyChannels.

Panics for images with Scanline encoding.

Trait Implementations

The simpler type after cropping is realized

Make the cropping real by reallocating the underlying storage, with the goal of reducing total memory usage. Currently not supported for SpecificChannels. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

The type of this image after cropping (probably the same as before)

Crop the image to exclude unwanted pixels. Panics for invalid (larger than previously) bounds. The bounds are specified in absolute coordinates. Does not reduce allocation size of the current image, but instead only adjust a few boundary numbers. Use reallocate_cropped() on the return value to actually reduce the memory footprint. Read more

Reduce your image to a smaller part, usually to save memory. Crop if bounds are specified, return the original if no bounds are specified. Does not reduce allocation size of the current image, but instead only adjust a few boundary numbers. Use reallocate_cropped() on the return value to actually reduce the memory footprint. Read more

Formats the value using the given formatter. Read more

The bounding rectangle of this pixel grid.

The type of pixel in this pixel grid.

Index is not in world coordinates, but within the data window. Position (0,0) always represents the top left pixel. Read more

The type of pixel in this pixel grid.

Index is not in world coordinates, but within the data window. Position (0,0) always represents the top left pixel. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Compare self with the other. Exceptional behaviour: Read more

Compare self with the other. Panics if not equal. Read more

This does an approximate comparison for all channels, even if some channels can be compressed without loss.

Compare self with the other. Panics if not equal. Read more

Generate the file meta data for this list of layers

The type of temporary writer

Create a temporary writer for this list of layers

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

The type of the cropped image (probably the same as the original image).

Crop away unwanted pixels from the border if they match the specified rule. Does not reduce allocation size of the current image, but instead only adjust a few boundary numbers. Use reallocate_cropped() on the return value to actually reduce the memory footprint. Read more

Crop away unwanted pixels from the border if they match the specified color. If you want discard based on a rule, use crop_where with a closure instead. Does not reduce allocation size of the current image, but instead only adjust a few boundary numbers. Use reallocate_cropped() on the return value to actually reduce the memory footprint. Read more

Convert this data to cropped data without discarding any pixels.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.