if (!function_exists('hex2rgb')) {
/**
* 颜色 十六进制 转 RGB
*/
function hex2rgb($hexColor) {
$color = str_replace('#', '', $hexColor);
if (strlen($color) > 3) {
$rgb = array(
'r' => hexdec(substr($color, 0, 2)),
'g' => hexdec(substr($color, 2, 2)),
'b' => hexdec(substr($color, 4, 2))
);
} else {
$color = $hexColor;
$r = substr($color, 0, 1) . substr($color, 0, 1);
$g = substr($color, 1, 1) . substr($color, 1, 1);
$b = substr($color, 2, 1) . substr($color, 2, 1);
$rgb = array(
'r' => hexdec($r),
'g' => hexdec($g),
'b' => hexdec($b)
);
}
return $rgb;
}
}
PHP 颜色 十六进制 转 RGB
最新推荐文章于 2024-11-08 12:34:34 发布
该PHP代码定义了一个名为hex2rgb的函数,用于将十六进制颜色代码转换为RGB值。函数首先移除颜色值前的井号,然后根据颜色值的长度进行处理,将其转换为十进制的RGB数组。
摘要由CSDN通过智能技术生成