Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/280.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在PHP中对类似的十六进制代码进行分组_Php_Colors_Hex - Fatal编程技术网

在PHP中对类似的十六进制代码进行分组

在PHP中对类似的十六进制代码进行分组,php,colors,hex,Php,Colors,Hex,我有以下颜色代码: F3 f9f9f9 从视觉上看,这两种颜色代码是相似的。如何将它们组合成单一颜色,或删除其中一种 如果我尝试使用base_convert($hex,16,10)并获得值之间的差异,问题是有些颜色与int值类似,但在视觉上确实不同。例如: #484848=4737096(灰色) #4878a8=4749480(蓝色)-视觉上存在巨大差异,但作为int值,差异很小 及 #183030=1585200(灰色) #181818=1579032(灰色)-双向都可以 #4878a8=47

我有以下颜色代码:

F3
f9f9f9

从视觉上看,这两种颜色代码是相似的。如何将它们组合成单一颜色,或删除其中一种

如果我尝试使用base_convert($hex,16,10)并获得值之间的差异,问题是有些颜色与int值类似,但在视觉上确实不同。例如:

#484848=4737096(灰色)
#4878a8=4749480(蓝色)-视觉上存在巨大差异,但作为int值,差异很小

#183030=1585200(灰色)
#181818=1579032(灰色)-双向都可以

#4878a8=4749480(蓝色)
#a81818=11016216(红色)-差异很大,包括可视值和as int值

使用函数将十六进制颜色代码转换为其等效RGB。示例(摘自第页):


然后,获取红色、绿色和蓝色三角洲,以获取颜色距离

转换为RGB值将允许您更准确地确定我认为的颜色的接近度。
<?php
/**
 * Convert a hexa decimal color code to its RGB equivalent
 *
 * @param string $hexStr (hexadecimal color value)
 * @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
 * @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
 * @return array or string (depending on second parameter. Returns False if invalid hex color value)
 */                                                                                                 
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
    $hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
    $rgbArray = array();
    if (strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
        $colorVal = hexdec($hexStr);
        $rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
        $rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
        $rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
        $rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
        $rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
        $rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return false; //Invalid hex color code
    }
    return $returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>
hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0