Struct exr::block::UncompressedBlock
source · [−]pub struct UncompressedBlock {
pub index: BlockIndex,
pub data: ByteVec,
}
Expand description
Contains a block of pixel data and where that data should be placed in the actual image.
Fields
index: BlockIndex
Location of the data inside the image.
data: ByteVec
Uncompressed pixel values of the whole block. One or more scan lines may be stored together as a scan line block. This byte vector contains all pixel rows, one after another. For each line in the tile, for each channel, the row values are contiguous. Stores all samples of the first channel, then all samples of the second channel, and so on.
Implementations
sourceimpl UncompressedBlock
impl UncompressedBlock
sourcepub fn decompress_chunk(
chunk: Chunk,
meta_data: &MetaData,
pedantic: bool
) -> Result<Self>
pub fn decompress_chunk(
chunk: Chunk,
meta_data: &MetaData,
pedantic: bool
) -> Result<Self>
Decompress the possibly compressed chunk and returns an UncompressedBlock
.
sourcepub fn compress_to_chunk(self, headers: &[Header]) -> Result<Chunk>
pub fn compress_to_chunk(self, headers: &[Header]) -> Result<Chunk>
Consume this block by compressing it, returning a Chunk
.
sourcepub fn lines(&self, channels: &ChannelList) -> impl Iterator<Item = LineRef<'_>>
pub fn lines(&self, channels: &ChannelList) -> impl Iterator<Item = LineRef<'_>>
Iterate all the lines in this block. Each line contains the all samples for one of the channels.
sourcepub fn collect_block_data_from_lines(
channels: &ChannelList,
block_index: BlockIndex,
extract_line: impl FnMut(LineRefMut<'_>)
) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
pub fn collect_block_data_from_lines(
channels: &ChannelList,
block_index: BlockIndex,
extract_line: impl FnMut(LineRefMut<'_>)
) -> Vec<u8>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
Create an uncompressed block byte vector by requesting one line of samples after another.
sourcepub fn from_lines(
channels: &ChannelList,
block_index: BlockIndex,
extract_line: impl FnMut(LineRefMut<'_>)
) -> Self
pub fn from_lines(
channels: &ChannelList,
block_index: BlockIndex,
extract_line: impl FnMut(LineRefMut<'_>)
) -> Self
Create an uncompressed block by requesting one line of samples after another.
Trait Implementations
sourceimpl Clone for UncompressedBlock
impl Clone for UncompressedBlock
sourcefn clone(&self) -> UncompressedBlock
fn clone(&self) -> UncompressedBlock
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 Debug for UncompressedBlock
impl Debug for UncompressedBlock
sourceimpl PartialEq<UncompressedBlock> for UncompressedBlock
impl PartialEq<UncompressedBlock> for UncompressedBlock
sourcefn eq(&self, other: &UncompressedBlock) -> bool
fn eq(&self, other: &UncompressedBlock) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UncompressedBlock) -> bool
fn ne(&self, other: &UncompressedBlock) -> bool
This method tests for !=
.
impl Eq for UncompressedBlock
impl StructuralEq for UncompressedBlock
impl StructuralPartialEq for UncompressedBlock
Auto Trait Implementations
impl RefUnwindSafe for UncompressedBlock
impl Send for UncompressedBlock
impl Sync for UncompressedBlock
impl Unpin for UncompressedBlock
impl UnwindSafe for UncompressedBlock
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