DK11 for ActiveX | TatukGIS_XDK11.TGIS_PixelBandCoding | Enums
Definition of how particular band is stored.
// C# public enum TGIS_PixelBandCoding { Unknown = 0, Palette = 1, Integer = 2, Cardinal = 3, Float = 4 }
' VisualBasic Public Enum TGIS_PixelBandCoding Unknown = 0 Palette = 1 Integer = 2 Cardinal = 3 Float = 4 End Enum
// Oxygene type TGIS_PixelBandCoding = public ( Unknown = 0, Palette = 1, Integer = 2, Cardinal = 3, Float = 4 );
Name | Value | Description | |
---|---|---|---|
Unknown | 0 | Band is an other kind of a photo channel (like infrared). | |
Palette | 1 | Band is stored as palette. | |
Integer | 2 | Band is stored as signed integer. | |
Cardinal | 3 | Band is stored as unsigned integer. | |
Float | 4 | Band is stored as float. | |