BIS fnc colorRGBAtoHTML: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=]{12})" to "|$1=$2 |descr=$3")
m (Some wiki formatting)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma3
|game1= arma3
 
|version1= 1.00
|1.00


|gr1= Arrays
|gr1= Arrays
Line 9: Line 8:
|descr= Converts RGBA color format to #AARRGGBB HTML color format.
|descr= Converts RGBA color format to #AARRGGBB HTML color format.


|s1= colorArray call [[BIS_fnc_colorRGBAtoHTML]]
|s1= colorArray call [[BIS_fnc_colorRGBAtoHTML]]


|p1= colorArray: [[Color|Color (RGBA)]] - in [r, g, b, a] format
|p1= colorArray: [[Color|Color (RGBA)]] - in [r, g, b, a] format


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


|x1= <code>[0,0,0,1] [[call]] [[BIS_fnc_colorRGBAtoHTML]]; {{codecomment|// will return #FF000000}}</code>
|x1= <sqf>[0,0,0,1] call BIS_fnc_colorRGBAtoHTML; // will return #FF000000</sqf>


|x2= <code>[2,93,0,1] [[call]] [[BIS_fnc_colorRGBAtoHTML]]; {{codecomment|// will return #FF025D00}}</code>
|x2= <sqf>[2,93,0,1] call BIS_fnc_colorRGBAtoHTML; // will return #FF025D00</sqf>


|seealso= [[Color|Color (RGBA)]], [[BIS_fnc_colorConfigToRGBA]], [[BIS_fnc_colorRGBtoHTML]], [[BIS_fnc_colorRGBAtoTexture]]
|seealso= [[Color|Color (RGBA)]] [[BIS_fnc_colorConfigToRGBA]] [[BIS_fnc_colorRGBtoHTML]] [[BIS_fnc_colorRGBAtoTexture]]
}}
}}

Latest revision as of 00:19, 13 July 2022

Hover & click on the images for description

Description

Description:
Converts RGBA color format to #AARRGGBB HTML color format.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
colorArray call BIS_fnc_colorRGBAtoHTML
Parameters:
colorArray: Color (RGBA) - in [r, g, b, a] format
Return Value:
String - format #AARRGGBB

Examples

Example 1:
[0,0,0,1] call BIS_fnc_colorRGBAtoHTML; // will return #FF000000
Example 2:
[2,93,0,1] call BIS_fnc_colorRGBAtoHTML; // will return #FF025D00

Additional Information

See also:
Color (RGBA) BIS_fnc_colorConfigToRGBA BIS_fnc_colorRGBtoHTML BIS_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