pub trait SamplesReader {
    type Samples;

    fn filter_block(&self, tile: TileCoordinates) -> bool;
    fn read_line(&mut self, line: LineRef<'_>) -> UnitResult;
    fn into_samples(self) -> Self::Samples;
}
Expand description

Processes pixel blocks from a file and accumulates them into a single pixel channel. For example, stores thousands of “Red” pixel values for a single layer.

Required Associated Types

The type of resulting sample storage

Required Methods

Specify whether a single block of pixels should be loaded from the file

Load a single pixel line, which has not been filtered, into the reader, accumulating the sample data

Deliver the final accumulated sample storage for the image

Implementors