pub struct AnyChannel<Samples> {
    pub name: Text,
    pub sample_data: Samples,
    pub quantize_linearly: bool,
    pub sampling: Vec2<usize>,
}
Expand description

A single arbitrary channel. Samples can currently only be FlatSamples or Levels<FlatSamples>

Fields

name: Text

One of “R”, “G”, or “B” most of the time.

sample_data: Samples

The actual pixel data. Can be FlatSamples or Levels<FlatSamples>.

quantize_linearly: bool

This attribute only tells lossy compression methods whether this value should be quantized exponentially or linearly.

Should be false for red, green, blue and luma channels, as they are not perceived linearly. Should be true for hue, chroma, saturation, and alpha channels.

sampling: Vec2<usize>

How many of the samples are skipped compared to the other channels in this layer.

Can be used for chroma subsampling for manual lossy data compression. Values other than 1 are allowed only in flat, scan-line based images. If an image is deep or tiled, the sampling rates for all of its channels must be 1.

Implementations

Create a new channel without subsampling.

Automatically flags this channel for specialized compression if the name is “R”, “G”, “B”, “Y”, or “L”, as they typically encode values that are perceived non-linearly. Construct the value yourself using AnyChannel { .. }, if you want to control this flag.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. 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

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

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.