General Structures > RGBQUAD |
Each array element in the PIC_PARM ColorTable is an RGBQUAD.
Copy Code | |
---|---|
typedef struct {
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
} RGBQUAD; |
Name | Description |
rgbBlue rgbGreen rgbRed |
A value from 0..255 with the intensity of the corresponding color. 0 is the darkest (none of the color) and 255 is the most intense. |
rgbReserved |
This field is not used in ColorTable. |