Common
RasterBand layouts that may be contained within a
Raster dataset. Each pixel of the raster
will contain the bands defined by the layout in the specified order. A typical color raster image will have an
RGBRasterFormat.
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 RasterFormat
public enum class RasterFormat
Members
| Member name | Description |
---|
| Red |
The format of the Raster is a single band consisting of red values.
|
| Green |
The format of the Raster is a single band consisting of green values.
|
| Blue |
The format of the Raster is a single band consisting of blue values.
|
| Alpha |
The format of the Raster is a single band consisting of alpha values.
|
| Rgb |
The format of the Raster is three bands consisting of red, green, and blue values.
|
| Bgr |
The format of the Raster is three bands consisting of blue, green, and red values.
|
| Rgba |
The format of the Raster is four bands consisting of red, green, blue, and alpha values.
|
| Bgra |
The format of the Raster is four bands consisting of blue, green, red, and alpha values.
|
| Luminance |
The format of the Raster is a single band consisting of luminance values.
|
| LuminanceAlpha |
The format of the Raster is two bands consisting of luminance and alpha values.
|
See Also