RGBToHex

Navigation:  Development > Function Reference > Helpers > Utility >

RGBToHex

Previous pageReturn to chapter overviewNext page

Convert a RGB color code to Hexadecimal.

 

App::Utility()->RGBToHex(R,G,B);

 

 

Parameter

Description

R

Red

G

Green

B

Blue

 

 

See bellow example:
 

$rgb = App::Utility()->RGBToHex(170,187,204);
pr($rgb);
 
/*
Return 
#aabbcc
*/