Graphics File Formats(Windows的.BMP .CUR .ICO文件的格式,有范例)
structure consists of an array of rgbtriple structures. windows applications should use the bitmapinfo structure instead of bitmapcoreinfo whenever possible. the bitmapinfo structure uses an rgbquad structure instead of the rgbtriple structure.
member description
rgbtbluespecifies the intensity of blue in the color. rgbtgreen specifies the intensity of green in the color. rgbtred specifies the intensity of red in the color.
see also
bitmapcoreinfo, bitmapinfo, rgbquad
typedef struct tagrgbtriple { /* rgbt */ byte rgbtblue; byte rgbtgreen; byte rgbtred; } rgbtriple;
the rgbtriple structure describes a color consisting of relative intensities of red, green, and blue. the bmcicolors member of the bitmapcoreinfo structure consists of an array of rgbtriple structures. windows applications should use the bitmapinfo structure instead of bitmapcoreinfo whenever possible. the bitmapinfo structure uses an rgbquad structure instead of the rgbtriple structure.
member description
rgbtbluespecifies the intensity of blue in the color. rgbtgreen specifies the intensity of green in the color. rgbtred specifies the intensity of red in the color.
see also
bitmapcoreinfo, bitmapinfo, rgbquad |