BIS fnc colorRGBtoHTML: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Text replacement - "\|seealso= ([^ ]+)(\]\]|\}\}), *(\[\[|\{\{)" to "|seealso= $1$2 $3")
 
(36 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|= Comments
|game1= arma2
____________________________________________________________________________________________
|version1= 1.00


| arma2 |= Game name
|game2= arma2oa
|version2= 1.50


|1.00|= Game version
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| <pre>/*
|game4= arma3
|version4= 0.50


Description:
|gr1= Arrays
Converts RGB color format to HTML color format
[0,0,0,1] became "#000000"
Alpha value in field will be ignored.


Returns:
|descr= Converts RGB color format to HTML color format.
String
*/


|s1= colorArray call [[BIS_fnc_colorRGBtoHTML]]


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
|p1= colorArray: [[Color|Color (RGBA)]] - can be [r, g, b, a] or [r, g, b], alpha value will be ignored in both cases
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_colorRGBtoHTML]]; --> |= Syntax
|r1= [[String]] - format #{{Color|red|RR}}{{Color|green|GG}}{{Color|blue|BB}}


|p1= |= Parameter 1
|x1= <sqf>private _htmlColor = [0,0,0,1] call BIS_fnc_colorRGBtoHTML; // will return #000000</sqf>


| |= Return value
|x2= <sqf>private _htmlColor = [2,93,0,1] call BIS_fnc_colorRGBtoHTML; // will return #025D00</sqf>
____________________________________________________________________________________________
 
|x1= <code></code> |=
____________________________________________________________________________________________
 
| |= See also


|seealso= [[Color|Color (RGBA)]] [[BIS_fnc_colorConfigToRGBA]] [[BIS_fnc_colorRGBAtoHTML]] [[BIS_fnc_colorRGBAtoTexture]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Misc|{{uc:colorRGBtoHTML}}]]
[[Category:Functions|{{uc:colorRGBtoHTML}}]]
[[Category:{{Name|arma2}}: Functions|{{uc:colorRGBtoHTML}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:colorRGBtoHTML}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:colorRGBtoHTML}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:colorRGBtoHTML}}]]

Latest revision as of 13:58, 1 July 2022

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:
private _htmlColor = [0,0,0,1] call BIS_fnc_colorRGBtoHTML; // will return #000000
Example 2:
private _htmlColor = [2,93,0,1] call BIS_fnc_colorRGBtoHTML; // will return #025D00

Additional Information

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