The type of data contained within each band of a
Raster dataset.
Namespace:
AGI.Foundation.Graphics.Imaging
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax Public Enumeration RasterType
public enum class RasterType
Members
| Member name | Description |
---|
| UnsignedByte |
Each value contained within a band can be represented with an unsigned byte.
|
| Byte |
Each value contained within a band can be represented with a byte.
|
| UnsignedShort |
Each value contained within a band can be represented with an unsigned short.
|
| Short |
Each value contained within a band can be represented with a short.
|
| UnsignedInt |
Each value contained within a band can be represented with an unsigned int.
|
| Int |
Each value contained within a band can be represented with an int.
|
| Float |
Each value contained within a band can be represented with a float.
|
| Double |
Each value contained within a band can be represented with a double.
|
See Also