pub trait RecursivePixelWriter<Pixel>: Sync {
    fn write_pixels<FullPixel>(
        &self,
        bytes: &mut [u8],
        pixels: &[FullPixel],
        get_pixel: impl Fn(&FullPixel) -> &Pixel
    ); }
Expand description

Write pixels to a slice of bytes. The top level writer contains all the other channels, the most inner channel is NoneMore.

Required Methods

Write pixels to a slice of bytes. Recursively do this for all channels.

Implementors