.NET Framework Class Library
ImageColorType Enumeration
|
<< Click to Display Table of Contents >> Navigation: Gnostice Document Studio .NET > Reference Documentation > API Reference > Gnostice.Core.Image Namespace > ImageColorType Enumeration |
Namespace: Gnostice.Core.Image
Assembly: Gnostice.Core (in Gnostice.Core.dll)
Visual Basic |
Public Enumeration ImageColorType |
C# |
public enum ImageColorType |
Visual C++ |
public enum class ImageColorType |
Member name |
Value |
Description |
|
Rgb24bpp |
0 |
Specifies that the format is 24 bits per pixel; 8 bits each are used for the red, green, and blue components. |
|
Rgb32bpp |
1 |
Specifies that the format is 32 bits per pixel; 8 bits each are used for the red, green, and blue components. The remaining 8 bits are not used. |
|
Argb32bpp |
2 |
Specifies that the format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components. |
|
Indexed1bpp |
3 |
Specifies that the pixel format is 1 bit per pixel and that it uses indexed color. The color table therefore has two colors in it. |
|
Indexed8bpp |
4 |
Specifies that the format is 8 bits per pixel, indexed. The color table therefore has 256 colors in it. |
|
Indexed4bpp |
5 |
Specifies that the format is 4 bits per pixel, indexed. |
|
Unknown |
6 |
An unsupported pixel format |