DK for ActiveX | TatukGIS_XDK11.TGIS_PixelFormat | Enums
Platform independent pixel format specification
// C# public enum TGIS_PixelFormat { Bit1 = 0, Bit4 = 1, Bit8 = 2, RGB = 3, ARGB = 4, Custom = 5 }
' VisualBasic Public Enum TGIS_PixelFormat Bit1 = 0 Bit4 = 1 Bit8 = 2 RGB = 3 ARGB = 4 Custom = 5 End Enum
// Oxygene type TGIS_PixelFormat = public ( Bit1 = 0, Bit4 = 1, Bit8 = 2, RGB = 3, ARGB = 4, Custom = 5 );
| Name | Value | Description | |
|---|---|---|---|
| Bit1 | 0 | 1 bit per pixel. | |
| Bit4 | 1 | 4 bit per pixel. | |
| Bit8 | 2 | 8 bit per pixel. | |
| RGB | 3 | 24 bit per pixel in RGB. | |
| ARGB | 4 | 32 bit per pixels in ARGB. | |
| Custom | 5 | Custom for special use. | |