Struct exr::image::SpecificChannels
source · [−]pub struct SpecificChannels<Pixels, ChannelsDescription> {
pub channels: ChannelsDescription,
pub pixels: Pixels,
}
Expand description
A grid of pixels. The pixels are written to your custom pixel storage.
PixelStorage
can be anything, from a flat Vec<f16>
to Vec<Vec<AnySample>>
, as desired.
In order to write this image to a file, your PixelStorage
must implement GetPixel
.
Fields
channels: ChannelsDescription
A description of the channels in the file, as opposed to the channels in memory.
Should always be a tuple containing ChannelDescription
s, one description for each channel.
pixels: Pixels
Your custom pixel storage
Implementations
sourceimpl<SampleStorage, Channels> SpecificChannels<SampleStorage, Channels>
impl<SampleStorage, Channels> SpecificChannels<SampleStorage, Channels>
sourcepub fn new(channels: Channels, source_samples: SampleStorage) -> Self where
SampleStorage: GetPixel,
SampleStorage::Pixel: IntoRecursive,
Channels: Sync + Clone + IntoRecursive,
<Channels as IntoRecursive>::Recursive: WritableChannelsDescription<<SampleStorage::Pixel as IntoRecursive>::Recursive>,
pub fn new(channels: Channels, source_samples: SampleStorage) -> Self where
SampleStorage: GetPixel,
SampleStorage::Pixel: IntoRecursive,
Channels: Sync + Clone + IntoRecursive,
<Channels as IntoRecursive>::Recursive: WritableChannelsDescription<<SampleStorage::Pixel as IntoRecursive>::Recursive>,
Create some pixels with channel information.
The Channels
must be a tuple containing either ChannelDescription
or Option<ChannelDescription>
.
The length of the tuple dictates the number of channels in the sample storage.
sourceimpl SpecificChannels<(), ()>
impl SpecificChannels<(), ()>
sourcepub fn build() -> SpecificChannelsBuilder<NoneMore, NoneMore>
pub fn build() -> SpecificChannelsBuilder<NoneMore, NoneMore>
Start building some specific channels. On the result of this function,
call with_named_channel
as many times as desired,
and then call with_pixels
to define the colors.
sourceimpl<SampleStorage> SpecificChannels<SampleStorage, (ChannelDescription, ChannelDescription, ChannelDescription, ChannelDescription)>
impl<SampleStorage> SpecificChannels<SampleStorage, (ChannelDescription, ChannelDescription, ChannelDescription, ChannelDescription)>
sourcepub fn rgba<R, G, B, A>(source_samples: SampleStorage) -> Self where
R: IntoSample,
G: IntoSample,
B: IntoSample,
A: IntoSample,
SampleStorage: GetPixel<Pixel = (R, G, B, A)>,
pub fn rgba<R, G, B, A>(source_samples: SampleStorage) -> Self where
R: IntoSample,
G: IntoSample,
B: IntoSample,
A: IntoSample,
SampleStorage: GetPixel<Pixel = (R, G, B, A)>,
Create an image with red, green, blue, and alpha channels.
You can pass a closure that returns a color for each pixel (Fn(Vec2<usize>) -> (R,G,B,A)
),
or you can pass your own image if it implements GetPixel<Pixel=(R,G,B,A)>
.
Each of R
, G
, B
and A
can be either f16
, f32
, u32
, or Sample
.
sourceimpl<SampleStorage> SpecificChannels<SampleStorage, (ChannelDescription, ChannelDescription, ChannelDescription)>
impl<SampleStorage> SpecificChannels<SampleStorage, (ChannelDescription, ChannelDescription, ChannelDescription)>
sourcepub fn rgb<R, G, B>(source_samples: SampleStorage) -> Self where
R: IntoSample,
G: IntoSample,
B: IntoSample,
SampleStorage: GetPixel<Pixel = (R, G, B)>,
pub fn rgb<R, G, B>(source_samples: SampleStorage) -> Self where
R: IntoSample,
G: IntoSample,
B: IntoSample,
SampleStorage: GetPixel<Pixel = (R, G, B)>,
Create an image with red, green, and blue channels.
You can pass a closure that returns a color for each pixel (Fn(Vec2<usize>) -> (R,G,B)
),
or you can pass your own image if it implements GetPixel<Pixel=(R,G,B)>
.
Each of R
, G
and B
can be either f16
, f32
, u32
, or Sample
.
Trait Implementations
sourceimpl<Pixels: Clone, ChannelsDescription: Clone> Clone for SpecificChannels<Pixels, ChannelsDescription>
impl<Pixels: Clone, ChannelsDescription: Clone> Clone for SpecificChannels<Pixels, ChannelsDescription>
sourcefn clone(&self) -> SpecificChannels<Pixels, ChannelsDescription>
fn clone(&self) -> SpecificChannels<Pixels, ChannelsDescription>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<Pixels: Debug, ChannelsDescription: Debug> Debug for SpecificChannels<Pixels, ChannelsDescription>
impl<Pixels: Debug, ChannelsDescription: Debug> Debug for SpecificChannels<Pixels, ChannelsDescription>
sourceimpl<Pixels: PartialEq, ChannelsDescription: PartialEq> PartialEq<SpecificChannels<Pixels, ChannelsDescription>> for SpecificChannels<Pixels, ChannelsDescription>
impl<Pixels: PartialEq, ChannelsDescription: PartialEq> PartialEq<SpecificChannels<Pixels, ChannelsDescription>> for SpecificChannels<Pixels, ChannelsDescription>
sourcefn eq(&self, other: &SpecificChannels<Pixels, ChannelsDescription>) -> bool
fn eq(&self, other: &SpecificChannels<Pixels, ChannelsDescription>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SpecificChannels<Pixels, ChannelsDescription>) -> bool
fn ne(&self, other: &SpecificChannels<Pixels, ChannelsDescription>) -> bool
This method tests for !=
.
sourceimpl<Pxs, Chans> ValidateResult for SpecificChannels<Pxs, Chans> where
Pxs: ValidateResult,
Chans: Eq,
impl<Pxs, Chans> ValidateResult for SpecificChannels<Pxs, Chans> where
Pxs: ValidateResult,
Chans: Eq,
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<'c, Channels, Storage> WritableChannels<'c> for SpecificChannels<Storage, Channels> where
Storage: 'c + GetPixel,
Storage::Pixel: IntoRecursive,
Channels: 'c + Sync + Clone + IntoRecursive,
<Channels as IntoRecursive>::Recursive: WritableChannelsDescription<<Storage::Pixel as IntoRecursive>::Recursive>,
impl<'c, Channels, Storage> WritableChannels<'c> for SpecificChannels<Storage, Channels> where
Storage: 'c + GetPixel,
Storage::Pixel: IntoRecursive,
Channels: 'c + Sync + Clone + IntoRecursive,
<Channels as IntoRecursive>::Recursive: WritableChannelsDescription<<Storage::Pixel as IntoRecursive>::Recursive>,
sourcefn infer_channel_list(&self) -> ChannelList
fn infer_channel_list(&self) -> ChannelList
Generate the file meta data for this list of channel
sourcefn infer_level_modes(&self) -> (LevelMode, RoundingMode)
fn infer_level_modes(&self) -> (LevelMode, RoundingMode)
Generate the file meta data of whether and how resolution levels should be stored in the file
type Writer = SpecificChannelsWriter<'c, <<Channels as IntoRecursive>::Recursive as WritableChannelsDescription<<<Storage as GetPixel>::Pixel as IntoRecursive>::Recursive>>::RecursiveWriter, Storage, Channels>
type Writer = SpecificChannelsWriter<'c, <<Channels as IntoRecursive>::Recursive as WritableChannelsDescription<<<Storage as GetPixel>::Pixel as IntoRecursive>::Recursive>>::RecursiveWriter, Storage, Channels>
The type of temporary writer
sourcefn create_writer(&'c self, header: &Header) -> Self::Writer
fn create_writer(&'c self, header: &Header) -> Self::Writer
Create a temporary writer for this list of channels
impl<Pixels: Eq, ChannelsDescription: Eq> Eq for SpecificChannels<Pixels, ChannelsDescription>
impl<Pixels, ChannelsDescription> StructuralEq for SpecificChannels<Pixels, ChannelsDescription>
impl<Pixels, ChannelsDescription> StructuralPartialEq for SpecificChannels<Pixels, ChannelsDescription>
Auto Trait Implementations
impl<Pixels, ChannelsDescription> RefUnwindSafe for SpecificChannels<Pixels, ChannelsDescription> where
ChannelsDescription: RefUnwindSafe,
Pixels: RefUnwindSafe,
impl<Pixels, ChannelsDescription> Send for SpecificChannels<Pixels, ChannelsDescription> where
ChannelsDescription: Send,
Pixels: Send,
impl<Pixels, ChannelsDescription> Sync for SpecificChannels<Pixels, ChannelsDescription> where
ChannelsDescription: Sync,
Pixels: Sync,
impl<Pixels, ChannelsDescription> Unpin for SpecificChannels<Pixels, ChannelsDescription> where
ChannelsDescription: Unpin,
Pixels: Unpin,
impl<Pixels, ChannelsDescription> UnwindSafe for SpecificChannels<Pixels, ChannelsDescription> where
ChannelsDescription: UnwindSafe,
Pixels: 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