PngColorType enumeration

PngColorType enumeration

Represents the PNG image color type.

The PngColorType type exposes the following members:

Fields

Field Description
GRAYSCALE Represents the color type where each pixel is a grayscale sample.
TRUECOLOR Represents the color type where each pixel is an R,G,B triple.
INDEXED_COLOR Represents the color type where each pixel is a palette index; a PLTE chunk
shall appear.
GRAYSCALE_WITH_ALPHA Represents the color type where each pixel is a grayscale sample followed
by an alpha sample.
TRUECOLOR_WITH_ALPHA Represents the color type where each pixel is an R,G,B triple followed by
an alpha sample.

See Also