TBitmap Format Enumeration
enumeration of supported bitmap format which the RGBLuminanceSource can process
The TBitmapFormat type exposes the following members.
Name | Description | |
---|---|---|
![]() | Unknown | format of the byte[] isn't known. RGBLuminanceSource tries to determine the best possible value |
![]() | Gray8 | grayscale array, the byte array is a luminance array with 1 byte per pixel |
![]() | RGB24 | 3 bytes per pixel with the channels red, green and blue |
![]() | RGB32 | 4 bytes per pixel with the channels red, green and blue |
![]() | ARGB32 | 4 bytes per pixel with the channels alpha, red, green and blue |
![]() | BGR24 | 3 bytes per pixel with the channels blue, green and red |
![]() | BGR32 | 4 bytes per pixel with the channels blue, green and red |
![]() | BGRA32 | 4 bytes per pixel with the channels blue, green, red and alpha |
![]() | RGB565 | 2 bytes per pixel, 5 bit red, 6 bits green and 5 bits blue |
![]() | RGBA32 | 4 bytes per pixel with the channels red, green, blue and alpha |