7

次のカラーコードがあります。

f3f3f3
f9f9f9

視覚的には、これら 2 つのカラー コードは似ています。それらを単一の色にグループ化したり、そのうちの 1 つを削除したりするにはどうすればよいですか?

base_convert($hex, 16, 10) を使用して値の違いを取得しようとすると、問題は、一部の色が int 値と似ているが、実際には視覚的に異なることです。例えば:

#484848 = 4737096 (灰色)
#4878a8 = 4749480 (青) - 視覚的には大きな違いがありますが、int 値としては違いが小さい

#183030 = 1585200 (灰色がかった)
#181818 = 1579032 (灰色がかった) - どちらの方法でも問題ありません

#4878a8 = 4749480 (青)
#a81818 = 11016216 (赤) - ビジュアルと int 値の両方で大きな違いがあります

4

1 に答える 1

4

hexdec関数を使用して、16 進数のカラー コードを対応する RGB に変換します。例(16進ページから取得):

<?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

それよりも、赤、緑、青のデルタを取得して、色の距離を取得します。

于 2012-12-06T16:21:32.073 に答える