pub trait RecursivePixelReader {
    type RecursiveChannelDescriptions;
    type RecursivePixel: Copy + Default + 'static;

    fn get_descriptions(&self) -> Self::RecursiveChannelDescriptions;
    fn read_pixels<'s, FullPixel>(
        &self,
        bytes: &'s [u8],
        pixels: &mut [FullPixel],
        get_pixel: impl Fn(&mut FullPixel) -> &mut Self::RecursivePixel
    ); }
Expand description

A reader containing sub-readers for reading the pixel content of an image.

Required Associated Types

The channel descriptions from the image. Will be converted to a tuple before being stored in SpecificChannels<_, ChannelDescriptions>.

The pixel type. Will be converted to a tuple at the end of the process.

Required Methods

Returns the channel descriptions based on the channels in the file.

Read the line of pixels.

Implementors