RasterFormat Enumeration
An enumeration of all supported raster formats.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum RasterFormat
Values
Value name | Value | Description |
---|---|---|
Rgba | 0 | Each cell is a 32-bit RGBA value, with 8 bits per channel. |
Rgb | 1 | Each cell is a 32-bit RGB value, with 8 bits for the R, G and B channels. The fourth byte of each cell is not used. |
Int32Bit | 2 | Each cell is a signed 32-bit integer value. |
Int16Bit | 3 | Each cell is a signed 16-bit integer value. Each row is padded to a multiple of 4 bytes. |
Int8Bit | 4 | Each cell is an unsigned 8-bit integer value. Each row is padded to a multiple of 4 bytes. |
Int1Bit | 5 | Each cell is an unsigned 8-bit integer value, but only the least significant bit is used. Each row is padded to a multiple of 4 bytes. |
Float | 6 | Each cell is a 32-bit float value. |
Remarks
This enumeration uniquely describes how the data for a raster is stored in memory. For all formats, each row is aligned to a 4-byte boundary; in some cases padding bytes must be inserted between the rows. All rasters are stored bottom-up, i.e. the first row of the data is the bottom row in the raster.
Platforms
Windows, Linux, Android