pub struct Encoding {
pub compression: Compression,
pub blocks: Blocks,
pub line_order: LineOrder,
}
Expand description
How the pixels are split up and compressed.
Fields
compression: Compression
How the pixel data of all channels in this layer is compressed. May be Compression::Uncompressed
.
See layer.attributes
for more attributes.
blocks: Blocks
Describes how the pixels of this layer are divided into smaller blocks. Either splits the image into its scan lines or splits the image into tiles of the specified size. A single block can be loaded without processing all bytes of a file.
line_order: LineOrder
In what order the tiles of this header occur in the file.
Does not change any actual image orientation.
See layer.attributes
for more attributes.
Implementations
sourceimpl Encoding
impl Encoding
sourcepub const UNCOMPRESSED: Encoding = Encoding {
compression: Compression::Uncompressed,
blocks: Blocks::ScanLines, // longest lines, faster memcpy
line_order: LineOrder::Increasing // presumably fastest?
}
pub const UNCOMPRESSED: Encoding = Encoding { compression: Compression::Uncompressed, blocks: Blocks::ScanLines, // longest lines, faster memcpy line_order: LineOrder::Increasing // presumably fastest? }
No compression. Massive space requirements. Fast, because it minimizes data shuffling and reallocation.
sourcepub const FAST_LOSSLESS: Encoding = Encoding {
compression: Compression::RLE,
blocks: Blocks::Tiles(Vec2(64, 64)), // optimize for RLE compression
line_order: LineOrder::Unspecified
}
pub const FAST_LOSSLESS: Encoding = Encoding { compression: Compression::RLE, blocks: Blocks::Tiles(Vec2(64, 64)), // optimize for RLE compression line_order: LineOrder::Unspecified }
Run-length encoding with tiles of 64x64 pixels. This is the recommended default encoding. Almost as fast as uncompressed data, but optimizes single-colored areas such as mattes and masks.
sourcepub const SMALL_LOSSLESS: Encoding = Encoding {
compression: Compression::ZIP16,
blocks: Blocks::ScanLines, // largest possible, but also with high probability of parallel workers
line_order: LineOrder::Increasing
}
pub const SMALL_LOSSLESS: Encoding = Encoding { compression: Compression::ZIP16, blocks: Blocks::ScanLines, // largest possible, but also with high probability of parallel workers line_order: LineOrder::Increasing }
ZIP compression with blocks of 16 lines. Slow, but produces small files without visible artefacts.
sourcepub const SMALL_FAST_LOSSY: Encoding = Encoding {
compression: Compression::PIZ,
blocks: Blocks::Tiles(Vec2(256, 256)),
line_order: LineOrder::Unspecified
}
pub const SMALL_FAST_LOSSY: Encoding = Encoding { compression: Compression::PIZ, blocks: Blocks::Tiles(Vec2(256, 256)), line_order: LineOrder::Unspecified }
PIZ compression with tiles of 256x256 pixels. Small images, not too slow. Might produce visible artefacts in the image.
Trait Implementations
impl Copy for Encoding
impl StructuralPartialEq for Encoding
Auto Trait Implementations
impl RefUnwindSafe for Encoding
impl Send for Encoding
impl Sync for Encoding
impl Unpin for Encoding
impl UnwindSafe for Encoding
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<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
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