If you need to convert RGB-color into HEX-color, use this.
function rgb2hex($rgb){
return sprintf("%06X", $rgb);
}
print rgb2hex(0x00FF00);
// returns --> 00FF00
print rgb2hex(65280);
// returns --> 00FF00
function rgb2hex($rgb){
return sprintf("%06X", $rgb);
}
print rgb2hex(0x00FF00);
// returns --> 00FF00
print rgb2hex(65280);
// returns --> 00FF00
0 comments:
Post a Comment