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
sourceimpl<Channels> Layer<Channels>
impl<Channels> Layer<Channels>
sourcepub fn absolute_bounds(&self) -> IntegerBounds
pub fn absolute_bounds(&self) -> IntegerBounds
Sometimes called “data window”
sourceimpl Layer<AnyChannels<FlatSamples>>
impl Layer<AnyChannels<FlatSamples>>
sourcepub fn sample_vec_at(&self, position: Vec2<usize>) -> FlatSamplesPixel
pub fn sample_vec_at(&self, position: Vec2<usize>) -> FlatSamplesPixel
Use samples_at
if you can borrow from this layer
sourcepub fn samples_at(&self, position: Vec2<usize>) -> FlatSampleIterator<'_>ⓘNotable traits for FlatSampleIterator<'_>impl Iterator for FlatSampleIterator<'_> type Item = Sample;
pub fn samples_at(&self, position: Vec2<usize>) -> FlatSampleIterator<'_>ⓘNotable traits for FlatSampleIterator<'_>impl Iterator for FlatSampleIterator<'_> type Item = Sample;
Lookup all channels of a single pixel in the image
sourceimpl<'s, ChannelData: 's> Layer<ChannelData>
impl<'s, ChannelData: 's> Layer<ChannelData>
sourcepub fn new(
dimensions: impl Into<Vec2<usize>>,
attributes: LayerAttributes,
encoding: Encoding,
channels: ChannelData
) -> Self where
ChannelData: WritableChannels<'s>,
pub fn new(
dimensions: impl Into<Vec2<usize>>,
attributes: LayerAttributes,
encoding: Encoding,
channels: ChannelData
) -> Self where
ChannelData: WritableChannels<'s>,
Create a layer with the specified size, attributes, encoding and channels.
The channels can be either SpecificChannels
or AnyChannels
.
sourcepub fn levels_with_resolution<'l, L>(
&self,
levels: &'l Levels<L>
) -> Box<dyn Iterator<Item = (&'l L, Vec2<usize>)> + 'l>ⓘNotable traits for Box<R, Global>impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized,
pub fn levels_with_resolution<'l, L>(
&self,
levels: &'l Levels<L>
) -> Box<dyn Iterator<Item = (&'l L, Vec2<usize>)> + 'l>ⓘNotable traits for Box<R, Global>impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized,
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized,
Panics for images with Scanline encoding.
Trait Implementations
sourceimpl ApplyCroppedView for Layer<CroppedChannels<AnyChannels<FlatSamples>>>
impl ApplyCroppedView for Layer<CroppedChannels<AnyChannels<FlatSamples>>>
type Reallocated = Layer<AnyChannels<FlatSamples>>
type Reallocated = Layer<AnyChannels<FlatSamples>>
The simpler type after cropping is realized
sourcefn reallocate_cropped(self) -> Self::Reallocated
fn reallocate_cropped(self) -> Self::Reallocated
Make the cropping real by reallocating the underlying storage,
with the goal of reducing total memory usage.
Currently not supported for SpecificChannels
. Read more
sourceimpl<Channels> Crop for Layer<Channels>
impl<Channels> Crop for Layer<Channels>
type Cropped = Layer<CroppedChannels<Channels>>
type Cropped = Layer<CroppedChannels<Channels>>
The type of this image after cropping (probably the same as before)
sourcefn crop(self, bounds: IntegerBounds) -> Self::Cropped
fn crop(self, bounds: IntegerBounds) -> Self::Cropped
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
sourcefn try_crop(
self,
bounds: Option<IntegerBounds>
) -> CropResult<Self::Cropped, Self>
fn try_crop(
self,
bounds: Option<IntegerBounds>
) -> CropResult<Self::Cropped, Self>
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
sourceimpl<S> GetBounds for Layer<S>
impl<S> GetBounds for Layer<S>
sourcefn bounds(&self) -> IntegerBounds
fn bounds(&self) -> IntegerBounds
The bounding rectangle of this pixel grid.
sourceimpl<Samples, Channels> InspectSample for Layer<SpecificChannels<Samples, Channels>> where
Samples: GetPixel,
impl<Samples, Channels> InspectSample for Layer<SpecificChannels<Samples, Channels>> where
Samples: GetPixel,
sourceimpl InspectSample for Layer<AnyChannels<FlatSamples>>
impl InspectSample for Layer<AnyChannels<FlatSamples>>
sourceimpl<S> ValidateResult for Layer<AnyChannels<S>> where
AnyChannel<S>: ValidateResult,
S: for<'a> WritableSamples<'a>,
impl<S> ValidateResult for Layer<AnyChannels<S>> where
AnyChannel<S>: ValidateResult,
S: for<'a> WritableSamples<'a>,
sourcefn validate_result(
&self,
other: &Self,
_overridden: ValidationOptions,
location: String
) -> ValidationResult
fn validate_result(
&self,
other: &Self,
_overridden: 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<Px, Desc> ValidateResult for Layer<SpecificChannels<Px, Desc>> where
SpecificChannels<Px, Desc>: ValidateResult,
impl<Px, Desc> ValidateResult for Layer<SpecificChannels<Px, Desc>> where
SpecificChannels<Px, Desc>: ValidateResult,
sourcefn validate_result(
&self,
other: &Self,
_overridden: ValidationOptions,
location: String
) -> ValidationResult
fn validate_result(
&self,
other: &Self,
_overridden: ValidationOptions,
location: String
) -> ValidationResult
This does an approximate comparison for all channels, even if some channels can be compressed without loss.
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<'slf, Channels: WritableChannels<'slf>> WritableLayers<'slf> for Layer<Channels>
impl<'slf, Channels: WritableChannels<'slf>> WritableLayers<'slf> for Layer<Channels>
sourcefn infer_headers(&self, image_attributes: &ImageAttributes) -> Headers
fn infer_headers(&self, image_attributes: &ImageAttributes) -> Headers
Generate the file meta data for this list of layers
type Writer = LayerWriter<<Channels as WritableChannels<'slf>>::Writer>
type Writer = LayerWriter<<Channels as WritableChannels<'slf>>::Writer>
The type of temporary writer
impl<Channels> StructuralPartialEq for Layer<Channels>
Auto Trait Implementations
impl<Channels> RefUnwindSafe for Layer<Channels> where
Channels: RefUnwindSafe,
impl<Channels> Send for Layer<Channels> where
Channels: Send,
impl<Channels> Sync for Layer<Channels> where
Channels: Sync,
impl<Channels> Unpin for Layer<Channels> where
Channels: Unpin,
impl<Channels> UnwindSafe for Layer<Channels> where
Channels: 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> CropWhere<<T as InspectSample>::Sample> for T where
T: Crop + InspectSample,
impl<T> CropWhere<<T as InspectSample>::Sample> for T where
T: Crop + InspectSample,
type Cropped = <T as Crop>::Cropped
type Cropped = <T as Crop>::Cropped
The type of the cropped image (probably the same as the original image).
sourcefn crop_where(
self,
discard_if: impl Fn(<T as InspectSample>::Sample) -> bool
) -> CropResult<<T as CropWhere<<T as InspectSample>::Sample>>::Cropped, T>
fn crop_where(
self,
discard_if: impl Fn(<T as InspectSample>::Sample) -> bool
) -> CropResult<<T as CropWhere<<T as InspectSample>::Sample>>::Cropped, T>
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
sourcefn crop_where_eq(
self,
discard_color: impl Into<<T as InspectSample>::Sample>
) -> CropResult<<T as CropWhere<<T as InspectSample>::Sample>>::Cropped, T> where
<T as InspectSample>::Sample: PartialEq<<T as InspectSample>::Sample>,
fn crop_where_eq(
self,
discard_color: impl Into<<T as InspectSample>::Sample>
) -> CropResult<<T as CropWhere<<T as InspectSample>::Sample>>::Cropped, T> where
<T as InspectSample>::Sample: PartialEq<<T as InspectSample>::Sample>,
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
sourcefn crop_nowhere(self) -> <T as CropWhere<<T as InspectSample>::Sample>>::Cropped
fn crop_nowhere(self) -> <T as CropWhere<<T as InspectSample>::Sample>>::Cropped
Convert this data to cropped data without discarding any pixels.
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