16進(jìn)制的顏色值通常表示為#FFFFFF,當(dāng)前也有縮減為#FFF,前提是兩位兩位必需相同,例如#FEFEFE這種,就不能進(jìn)行縮減。而RGB的顏色格式是由3組0~255的數(shù)字構(gòu)成,分別代表紅(Red)、綠(Green)、藍(lán)(Blue)的色值。
那么,將16進(jìn)制轉(zhuǎn)換為RGB色值,其實(shí)就是分別把#號(hào)后面的兩位作為一個(gè)單位轉(zhuǎn)換成十進(jìn)制。
代碼如下:
/** * 將16進(jìn)制顏色轉(zhuǎn)換為RGB * author www.jb51.net */ 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{ $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; }
另一種寫法
/** * 十六進(jìn)制轉(zhuǎn)RGB * @param string $color 16進(jìn)制顏色值 * @return array */ public static function hex2rgb($color) { $hexColor = str_replace('#', '', $color); $lens = strlen($hexColor); if ($lens != 3 $lens != 6) { return false; } $newcolor = ''; if ($lens == 3) { for ($i = 0; $i $lens; $i++) { $newcolor .= $hexColor[$i] . $hexColor[$i]; } } else { $newcolor = $hexColor; } $hex = str_split($newcolor, 2); $rgb = []; foreach ($hex as $key => $vls) { $rgb[] = hexdec($vls); } return $rgb; }
RGB顏色和十六進(jìn)制顏色互轉(zhuǎn)
/** * RGB轉(zhuǎn) 十六進(jìn)制 * @param $rgb RGB顏色的字符串 如:rgb(255,255,255); * @return string 十六進(jìn)制顏色值 如:#FFFFFF */ function RGBToHex($rgb){ $regexp = "/^rgb\(([0-9]{0,3})\,\s*([0-9]{0,3})\,\s*([0-9]{0,3})\)/"; $re = preg_match($regexp, $rgb, $match); $re = array_shift($match); $hexColor = "#"; $hex = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'); for ($i = 0; $i 3; $i++) { $r = null; $c = $match[$i]; $hexAr = array(); while ($c > 16) { $r = $c % 16; $c = ($c / 16) >> 0; array_push($hexAr, $hex[$r]); } array_push($hexAr, $hex[$c]); $ret = array_reverse($hexAr); $item = implode('', $ret); $item = str_pad($item, 2, '0', STR_PAD_LEFT); $hexColor .= $item; } return $hexColor; } /** * 十六進(jìn)制 轉(zhuǎn) 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; }
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
標(biāo)簽:昭通 梅河口 九江 涼山 韶關(guān) 十堰 遼陽(yáng) 甘肅
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP中十六進(jìn)制顏色與RGB顏色值互轉(zhuǎn)的方法》,本文關(guān)鍵詞 PHP,中,十六進(jìn)制,顏色,與,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。