<?PHP function hex2rgb ( $strHexColor ) { $iColor = hexdec ( substr ( $strHexColor, 1 ) ); $iR = ($iColor >> 0x10) & 0xff; $iG = ($iColor >> 0x8) & 0xff; $iB = $iColor & 0xff; return array ( 'red' => $iR, 'green' => $iG, 'blue' => $iB ); } ?>
<?PHP $arRGB = hex2rgb ( '#ff6464' ); print ( 'Rotanteil: ' . $arRGB['red'] . '<br />' . "\n" . 'Grünanteil: ' . $arRGB['green'] . '<br />' . "\n" . 'Blauanteil: ' . $arRGB['blue'] ); ?>