al_color_rgb_to_html(3alleg5) | al_color_rgb_to_html(3alleg5) |
al_color_rgb_to_html - Allegro 5 API
#include <allegro5/allegro_color.h> void al_color_rgb_to_html(float red, float green, float blue,
char *string)
Create an HTML-style string representation of an ALLEGRO_COLOR(3alleg5), e.g. #00faff.
Parameters:
Example:
char html[8]; al_color_rgb_to_html(1, 0, 0, html);
Now html will contain “#ff0000”.
Allegro reference manual |