.\" Automatically generated by Pandoc 3.1.6.2 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "al_color_rgb_to_html" "3" "" "Allegro reference manual" "" .hy .SH NAME .PP al_color_rgb_to_html - Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include void al_color_rgb_to_html(float red, float green, float blue, char *string) \f[R] .fi .SH DESCRIPTION .PP Create an HTML-style string representation of an ALLEGRO_COLOR(3), e.g.\ #00faff. .PP Parameters: .IP \[bu] 2 red, green, blue - The color components in the range 0..1. .IP \[bu] 2 string - A pointer to a buffer of at least 8 bytes, into which the result will be written (including the NUL terminator). .PP Example: .IP .nf \f[C] char html[8]; al_color_rgb_to_html(1, 0, 0, html); \f[R] .fi .PP Now html will contain \[lq]#ff0000\[rq]. .SH SEE ALSO .PP al_color_html(3), al_color_html_to_rgb(3)