function rtf::hex2rgb in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/rtf/rtf_export.inc \rtf::hex2rgb()
- 7 modules/rtf/rtf_export.inc \rtf::hex2rgb()
- 7.2 modules/rtf/rtf_export.inc \rtf::hex2rgb()
1 call to rtf::hex2rgb()
File
- ./
class_rtf.php, line 159
Class
Code
function hex2rgb($hexcode) {
$hexcode = str_replace("#", "", $hexcode);
$rgb = array();
$rgb["red"] = hexdec(substr($hexcode, 0, 2));
$rgb["green"] = hexdec(substr($hexcode, 2, 2));
$rgb["blue"] = hexdec(substr($hexcode, 4, 2));
$this->colour_rgb = $rgb;
}