pub trait ColorType {
    type Inner: TiffValue;

    const TIFF_VALUE: PhotometricInterpretation;
    const BITS_PER_SAMPLE: &'static [u16];
    const SAMPLE_FORMAT: &'static [SampleFormat];
}
Expand description

Trait for different colortypes that can be encoded.

Required Associated Types

The type of each sample of this colortype

Required Associated Constants

The value of the tiff tag PhotometricInterpretation

The value of the tiff tag BitsPerSample

The value of the tiff tag SampleFormat

Implementors