BIS fnc colorRGBtoHTML: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma2 |Game name=
| arma2


|1.00|Game version=
|1.00


|gr1 = Arrays |GROUP1=
|gr1 = Arrays


| Converts RGB color format to HTML color format. |DESCRIPTION=
| Converts RGB color format to HTML color format.


| colorArray call [[BIS_fnc_colorRGBtoHTML]] |SYNTAX=
| colorArray call [[BIS_fnc_colorRGBtoHTML]]


|p1= colorArray: [[Color|Color (RGBA)]] - can be [r, g, b, a] or [r, g, b], alpha value will be ignored in both cases |PARAMETER1=
|p1= colorArray: [[Color|Color (RGBA)]] - can be [r, g, b, a] or [r, g, b], alpha value will be ignored in both cases


| [[String]] - format #<span style{{=}}"color: red">RR</span><span style{{=}}"color: green">GG</span><span style{{=}}"color: blue">BB</span> |RETURNVALUE=
| [[String]] - format #<span style{{=}}"color: red">RR</span><span style{{=}}"color: green">GG</span><span style{{=}}"color: blue">BB</span>


|x1= <code>_htmlColor = [0,0,0,1] [[call]] [[BIS_fnc_colorRGBtoHTML]]; {{codecomment|// will return #000000}}</code> |EXAMPLE1=
|x1= <code>_htmlColor = [0,0,0,1] [[call]] [[BIS_fnc_colorRGBtoHTML]]; {{codecomment|// will return #000000}}</code>


|x2= <code>_htmlColor = [2,93,0,1] [[call]] [[BIS_fnc_colorRGBtoHTML]]; {{codecomment|// will return #025D00}}</code> |EXAMPLE2=
|x2= <code>_htmlColor = [2,93,0,1] [[call]] [[BIS_fnc_colorRGBtoHTML]]; {{codecomment|// will return #025D00}}</code>


| [[Color|Color (RGBA)]], [[BIS_fnc_colorConfigToRGBA]], [[BIS_fnc_colorRGBAtoHTML]], [[BIS_fnc_colorRGBAtoTexture]] |SEEALSO=
| [[Color|Color (RGBA)]], [[BIS_fnc_colorConfigToRGBA]], [[BIS_fnc_colorRGBAtoHTML]], [[BIS_fnc_colorRGBAtoTexture]]
}}
}}



Revision as of 23:36, 17 January 2021

Hover & click on the images for description

Description

Description:
Converts RGB color format to HTML color format.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
colorArray call BIS_fnc_colorRGBtoHTML
Parameters:
colorArray: Color (RGBA) - can be [r, g, b, a] or [r, g, b], alpha value will be ignored in both cases
Return Value:
String - format #RRGGBB

Examples

Example 1:
_htmlColor = [0,0,0,1] call BIS_fnc_colorRGBtoHTML; // will return #000000
Example 2:
_htmlColor = [2,93,0,1] call BIS_fnc_colorRGBtoHTML; // will return #025D00

Additional Information

See also:
Color (RGBA)BIS_fnc_colorConfigToRGBABIS_fnc_colorRGBAtoHTMLBIS_fnc_colorRGBAtoTexture

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note


Bottom Section