Table of Contents

Enum ColorFormat

Namespace
Iot.Device.EPaper.Enums
Assembly
Iot.Device.ePaper.dll

Defines the supported color formats in the graphics library.

public enum ColorFormat

Fields

Color12bppRgb444 = 5

12-bits-per-pixel color format. Every color component is encoded in 4 bits.

Color16bppRgb565 = 6

16-bits-per-pixel color format. Colors are encoded in 5 bits for red, 6 bits for green and 5 bits for blue.

Color1BitPerPixel = 0

1-bit-per-pixel color format.

Color2BitPerPixel = 1

2-bits-per-pixel. This is used by displays that support 3 colors by using 2 separate RAM.

Color4bppGrayscale = 2

4-bits-per-pixel color format.

Color8bppGrayscale = 3

8-bits-per-pixel color format.

Color8bppRgb332 = 4

8-bits-per-pixel color format. Colors are encoded in 3 bits for red, 3 bits for green and 2 bits for blue.