al_color_rgb_to_html

void al_color_rgb_to_html(float red, float green, float blue,
    char *string)
Introduced in 5.0.0

Create an HTML-style string representation of an ALLEGRO_COLOR, e.g. #00faff.

Parameters:

Example:

char html[8];
al_color_rgb_to_html(1, 0, 0, html);

Now html will contain "#ff0000".

See also: al_color_html, al_color_html_to_rgb

Examples: ex_color


Most helpful discussions: