91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php如何將顏色轉十六進制

發布時間:2021-04-01 10:57:51 來源:億速云 閱讀:175 作者:小新 欄目:編程語言

這篇文章主要介紹php如何將顏色轉十六進制,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

php將顏色轉十六進制的方法:首先創建一個PHP示例文件;然后通過“function RGBToHex($rgb){...}”方法將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如何將顏色轉十六進制”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

郑州市| 西贡区| 郴州市| 江源县| 固安县| 桃源县| 宜阳县| 梨树县| 莫力| 扶绥县| 博罗县| 吕梁市| 乌什县| 虞城县| 饶阳县| 扶余县| 保德县| 乐平市| 共和县| 吴江市| 建阳市| 汨罗市| 湘潭市| 宿州市| 桐乡市| 沽源县| 浮山县| 城固县| 墨玉县| 兴宁市| 莎车县| 金溪县| 高淳县| 仁寿县| 齐河县| 安多县| 泰州市| 桐城市| 公安县| 涪陵区| 武邑县|