Enum PngColorType

PngColorType enumeration

Represents the PNG image color type.

public enum PngColorType

Values

NameValueDescription
Grayscale0Represents the color type where each pixel is a greyscale sample.
Truecolor2Represents the color type where each pixel is an R,G,B triple.
IndexedColor3Represents the color type where each pixel is a palette index; a PLTE chunk shall appear.
GrayscaleWithAlpha4Represents the color type where each pixel is a greyscale sample followed by an alpha sample.
TruecolorWithAlpha6Represents the color type where each pixel is an R,G,B triple followed by an alpha sample.

See Also