PHP中十六進(jìn)制顏色與RGB顏色值互轉(zhuǎn)的方法
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色值,其實就是分別把#號后面的兩位作為一個單位轉(zhuǎn)換成十進(jìn)制。
代碼如下:
/**
* 將16進(jìn)制顏色轉(zhuǎn)換為RGB
* author m.fzitv.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é)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
- PHP5中使用mysqli的prepare操作數(shù)據(jù)庫的介紹
- PHP中單例模式的使用場景與使用方法講解
- PHP自動生成縮略圖函數(shù)的源碼示例
- PHP添加文字水印或圖片水印的水印類完整源代碼與使用示例
- PHP實現(xiàn)對數(shù)字分隔加千分號的方法
- PHP生成指定范圍內(nèi)的N個不重復(fù)的隨機數(shù)
- PHP將整數(shù)數(shù)字轉(zhuǎn)換為羅馬數(shù)字實例分享
- Ubuntu16.04搭建php5.6Web服務(wù)器環(huán)境
- PHP標(biāo)準(zhǔn)庫(PHP SPL)詳解
- PHP后臺備份MySQL數(shù)據(jù)庫的源碼實例
相關(guān)文章
PHP實現(xiàn)多服務(wù)器session共享之NFS共享的方法
PHP實現(xiàn)多服務(wù)器session共享之NFS共享的方法...2007-03-03

