XcmsQueryColor(), XcmsQueryColors(), XcmsLookupColor() - obtain color values
Status XcmsQueryColor (Display *display, Colormap colormap,
XcmsColor *color_in_out,
XcmsColorFormat result_format)
Status XcmsQueryColors (Display *display, Colormap colormap,
XcmsColor colors_in_out[],
unsigned int ncolors,
XcmsColorFormat result_format)
Status XcmsLookupColor (Display *display, Colormap colormap,
char *color_string,
XcmsColor *color_exact_return,
XcmsColor *color_screen_return,
XcmsColorFormat result_format)
The XcmsQueryColor(3) function obtains the RGB value for the pixel value in the pixel member of the specified XcmsColor structure, and then converts the value to the target format as specified by the result_format argument. If the pixel is not a valid index into the specified colormap, a BadValue error results. The XcmsQueryColors(3) function obtains the RGB values for pixel values in the pixel members of XcmsColor structures, and then converts the values to the target format as specified by the result_format argument. If a pixel is not a valid index into the specified colormap, a BadValue error results. If more than one pixel is in error, the one that gets reported is arbitrary.
XcmsQueryColor(3) and XcmsQueryColors(3) can generate BadColor and BadValue errors.
The XcmsLookupColor(3) function looks up the string name of a color with respect to the screen associated with the specified colormap. It returns both the exact color values and the closest values provided by the screen with respect to the visual type of the specified colormap. The values are returned in the format specified by result_format. If the color name is not in the Host Portable Character Encoding the result is implementation dependent. Use of uppercase or lowercase does not matter. XcmsLookupColor(3) returns XcmsSuccess or XcmsSuccessWithCompression if the name is resolved, otherwise it returns XcmsFailure. If XcmsSuccessWithCompression is returned, then the color specification in color_screen_return is the result of gamut compression.
Xlib