新聞中心
本文操作環(huán)境:windows7系統(tǒng)、php7.1版、DELL G3電腦

成都創(chuàng)新互聯(lián)是一家從事企業(yè)網(wǎng)站建設、成都做網(wǎng)站、成都網(wǎng)站建設、成都外貿(mào)網(wǎng)站建設、行業(yè)門戶網(wǎng)站建設、網(wǎng)頁設計制作的專業(yè)網(wǎng)站設計公司,擁有經(jīng)驗豐富的網(wǎng)站建設工程師和網(wǎng)頁設計人員,具備各種規(guī)模與類型網(wǎng)站建設的實力,在網(wǎng)站建設領域樹立了自己獨特的設計風格。自公司成立以來曾獨立設計制作的站點成百上千。
php 怎么實現(xiàn)rgb轉(zhuǎn)十六進制 ?
PHP中十六進制顏色與RGB顏色值互轉(zhuǎn)的方法:
今天小編就為大家分享一篇關于PHP中十六進制顏色與RGB顏色值互轉(zhuǎn)的方法,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家:
16進制的顏色值通常表示為#FFFFFF,當前也有縮減為#FFF,前提是兩位兩位必需相同,例如#FEFEFE這種,就不能進行縮減。而RGB的顏色格式是由3組0~255的數(shù)字構(gòu)成,分別代表紅(Red)、綠(Green)、藍(Blue)的色值。
那么,將16進制轉(zhuǎn)換為RGB色值,其實就是分別把#號后面的兩位作為一個單位轉(zhuǎn)換成十進制。
代碼如下:
/**
* 將16進制顏色轉(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;
}
另一種寫法
/**
* 十六進制轉(zhuǎn)RGB
* @param string $color 16進制顏色值
* @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顏色和十六進制顏色互轉(zhuǎn)
/**
* RGB轉(zhuǎn) 十六進制
* @param $rgb RGB顏色的字符串 如:rgb(255,255,255);
* @return string 十六進制顏色值 如:#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;
}
/**
* 十六進制 轉(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;
} 標題名稱:php怎么實現(xiàn)rgb轉(zhuǎn)十六進制
轉(zhuǎn)載源于:http://www.5511xx.com/article/dhhspgc.html


咨詢
建站咨詢
