php實作rgb轉十六進位的方法:1、建立一個PHP範例檔;2、透過「function RGBToHex($rgb){...}」方法實作RGB轉十六進位即可。
本文操作環境:windows7系統、PHP7.1版、DELL G3電腦
php 怎麼實作rgb轉十六進制?
PHP中十六進位顏色與RGB顏色值互轉的方法:
今天小編就為大家分享一篇關於PHP中十六進位顏色與RGB顏色值互轉的方法,小編覺得內容挺不錯的,現在分享給大家:
16進制的顏色值通常表示為#FFFFFF,目前也有縮減為#FFF ,前提是兩位兩位必需相同,例如#FEFEFE這種,就不能進行縮減。而RGB的顏色格式是由3組0~255的數字構成,分別代表紅(Red)、綠(Green)、藍色(Blue)的色值。
那麼,將16進位轉換為RGB色值,其實就是分別把#號後面的兩位數作為一個單位轉換成十進位。
程式碼如下:
/** * 将16进制颜色转换为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; }
另一種寫法
/** * 十六进制转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顏色和十六進位顏色互轉
/** * RGB转 十六进制 * @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; } /** * 十六进制 转 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影片教學》
以上是php 怎麼實現rgb轉十六進位的詳細內容。更多資訊請關注PHP中文網其他相關文章!