Enum oxipng::png::ColorType
[−]
[src]
pub enum ColorType {
Grayscale,
RGB,
Indexed,
GrayscaleAlpha,
RGBA,
}The color type used to represent this image
Variants
Grayscale | Grayscale, with one color channel | |
RGB | RGB, with three color channels | |
Indexed | Indexed, with one byte per pixel representing one of up to 256 colors in the image | |
GrayscaleAlpha | Grayscale + Alpha, with two color channels | |
RGBA | RGBA, with four color channels |