| DisplayPixelFormat Enumeration |
Specifies the pixel format of pixel data. Each enumeration value defines a channel
ordering, bit depth, and data type.
Namespace: Microsoft.IoT.DeviceCore.DisplayAssembly: Microsoft.IoT.DeviceCore (in Microsoft.IoT.DeviceCore.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public enum DisplayPixelFormat
Public Enumeration DisplayPixelFormat
public enum class DisplayPixelFormat
Members
| Member name | Value | Description |
---|
| Unknown | 0 |
The display pixel format is unknown.
|
| OneBit | 1 |
Each display pixel is represented by a single bit.
|
| Rgb444 | 2 |
A 12-bit pixel format with 4 Red, 4 Green and 4 Blue bits.
|
| Rgb565 | 5 |
A 16-bit pixel format with 5 Red, 6 Green and 5 Blue bits.
|
| Rgb666 | 6 |
An 18-bit pixel format with 6 Red, 6 Green and 6 Blue bits.
|
See Also