Home  /  Autodocs  /  graphics.library

NAME

FindColor
Find the closest matching color in a ColorMap. (V39)

SYNOPSIS

color = FindColor(cm, R, G, B , maxpen)
a3 d1 d2 d3 d4

ULONG FindColor( struct ColorMap *, ULONG, ULONG, ULONG,LONG);

INPUTS

cm
colormap

R
red level (32 bit left justified fraction)

G
green level (32 bit left justified fraction)

B
blue level (32 bit left justified fraction)

MaxPen
the maximum entry in the color table to search. A value of -1 will limit the search to only those pens which could be rendered in (for instance, it will not examine the sprite colors on a 4 color screen).

RESULT

The system will attempt to find the color in the passed ColorMap which most closely matches the RGB values passed. No new pens will be allocated, and you should not ReleasePen() the returned pen.

This function is not sensitive to palette sharing issues. Its intended use is for:

NOTES

In order to use the MaxPen=-1 feature, you must have initialized palette sharing via AttachPalExtra() (all intuition screens do this). Otherwise, MaxPen=-1 will search all colors in the colormap.

When searching for the color which most closely matches the RGB values passed, the graphics.library default color match function will be used. You cannot override this function and you cannot influence how it will perform the matching operation.

BUGS

The default color match function in graphics.library V39-V47 pays no attention to how close two colors are in terms human perception because it lends greatest weight to the largest relative difference in any two random RGB components. This will impact fidelity and will randomly consider two colors to "match most closely" which may have little else in common.

This has been addressed in version 47.9 of graphics library

Both the color specified and the color information stored in the ColorMap will be truncated during the search for the best match. This means that if you specify a 96 bit RGB value, only the 4 most significant bits of each color component may be checked on a system using the ECS or OCS graphics custom chips.

SEE ALSO

ObtainBestPenA(), GetColorMap(), ObtainPen(), ReleasePen()