pub trait PixelDecoder {
    fn decode_pixel_data(&self) -> Result<DecodedPixelData<'_>>;
}

Required Methods

Decode compressed pixel data. A new buffer (Vec) is created holding the decoded pixel data.

Implementations on Foreign Types

Implementors