溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

php怎么制作圓形用戶頭像

發(fā)布時(shí)間:2021-09-01 21:34:16 來源:億速云 閱讀:173 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“php怎么制作圓形用戶頭像”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php怎么制作圓形用戶頭像”吧!

思路

使用圖層的方法設(shè)計(jì),共需要?jiǎng)?chuàng)建3個(gè)圖像層

1.底層:最后生成的圖像

2.真實(shí)用戶頭像:作為中間層,用戶上傳的真實(shí)頭像圖片

3.圓形蒙版:作為最上層,在蒙版中繪制圓形,并設(shè)置為透明

如圖:

php怎么制作圓形用戶頭像

代碼如下:

主功能類 avatar.class.php

<?php
class avatar
{
 private $fileName; //文件的絕對(duì)路徑(或基于最終調(diào)用文件的相對(duì)路徑)
 private $rgb; //顏色索引(數(shù)組 array(255,255,0) 或 16進(jìn)制值 ffff00/#ffff00/ff0/#ff0)
 private $size; //圖像大小
 private $imgInfo; //圖像信息
 
 /**
  * 初始化
  * Enter description here ...
  * @param string $fileName 文件的絕對(duì)路徑(或基于最終調(diào)用文件的相對(duì)路徑)
  * @param mixed $rgb 顏色索引(數(shù)組 array(255,255,0) 或 16進(jìn)制值 ffff00/#ffff00/ff0/#ff0)
  * @param int $size 圖像大小
  */
 public function __construct($fileName, $rgb, $size)
 {
  $this->fileName = $fileName;
  
  if(is_array($rgb)){
   $this->rgb = $rgb; //rgb顏色數(shù)組 array(255,255,0)
  }else{
   //有的人喜歡帶#號(hào)
   $rgb = trim($rgb, '#');
   //處理縮寫形式
   if (strlen($rgb)==3){
    $_tmp = $rgb[0].$rgb[0].$rgb[1].$rgb[1].$rgb[2].$rgb[2];
    $rgb = $_tmp;
   }
   $this->rgb = $this->createRGB($rgb); //16進(jìn)制值 ffff00
  }
  
  $this->size = $size;
  
  $this->imgInfo = getimagesize($this->fileName);
  
  if(!$this->imgInfo){
   throw Exception("無法讀取圖像文件");
  }
  if(!in_array($this->imgInfo[2], array(2,3))){
   //僅允許jpg和png
   throw Exception("圖像格式不支持");
  }
 }
 
 /**
  * 顯示圖像
  * Enter description here ...
  */
 public function show()
 {
  header("content-type:image/png");
  
  $shadow = $this->createshadow(); //遮罩圖片
  
  //創(chuàng)建一個(gè)方形圖片
  $imgbk = imagecreatetruecolor($this->size, $this->size); //目標(biāo)圖片
  
  switch ($this->imgInfo[2]){
   case 2:
    $imgfk = imagecreatefromjpeg($this->fileName); //原素材圖片
    break;
   case 3:
    $imgfk = imagecreatefrompng($this->fileName); //原素材圖片
   default:
    return ;
    break;
  }
  
  
  $realSize = $this->imgInfo[0]<$this->imgInfo[1]? $this->imgInfo[0] : $this->imgInfo[1];
  
  imagecopyresized($imgbk, $imgfk, 0, 0, 0, 0, $this->size, $this->size, $realSize, $realSize);
  imagecopymerge($imgbk, $shadow, 0, 0, 0, 0, $this->size, $this->size, 100);
  
  //創(chuàng)建圖像
  imagepng($imgbk);
  
  //銷毀資源
  imagedestroy($imgbk);
  imagedestroy($imgfk);
  imagedestroy($shadow);
 }
 
 /**
  * 創(chuàng)建一個(gè)圓形遮罩
  * Enter description here ...
  * @param array 10進(jìn)制顏色數(shù)組
  */
 private function createshadow()
 {
  
  $img = imagecreatetruecolor($this->size, $this->size);
  
  imageantialias($img, true); //開啟抗鋸齒
  
  $color_bg = imagecolorallocate($img, $this->rgb[0], $this->rgb[1], $this->rgb[2]); //背景色
  $color_fg = imagecolorallocate($img, 0, 0, 0); //前景色,主要用來創(chuàng)建圓形
  
  imagefilledrectangle($img, 0, 0, 200, 200, $color_bg);
  imagefilledarc($img, 100, 100, 200, 200, 0, 0, $color_fg, IMG_ARC_PIE);
  
  imagecolortransparent($img, $color_fg); //將前景色轉(zhuǎn)換為透明
  
  
  return $img;
 }
 
 /**
  * 將字符形式16進(jìn)制串轉(zhuǎn)為10進(jìn)制
  * Enter description here ...
  * @param $str
  */
 private function getIntFromHexStr($str)
 {
  $format = '0123456789abcdef';
  
  $sum = 0;
  
  for($i=strlen($str)-1, $c=0, $j=0; $i>=$c; $i--,$j++){
   $index = strpos($format, $str[$i]);//strpos從0計(jì)算
   $sum+=$index * pow(16,$j);
  }
  
  return $sum;
 }
 
 /**
  * 將16進(jìn)制顏色轉(zhuǎn)為10進(jìn)制顏色值數(shù)組(RGB)
  * Enter description here ...
  * @param $str 16進(jìn)制串(如:ff9900)
  */
 private function createRGB($str)
 {
  $rgb = array();
  if(strlen($str) != 6){
   $rgb[] = 0xff;
   $rgb[] = 0xff;
   $rgb[] = 0xff;
   return $rgb; //默認(rèn)白色
  }
 
  $rgb[] = $this->getIntFromHexStr(substr($str, 0, 2));
  $rgb[] = $this->getIntFromHexStr(substr($str, 2, 2));
  $rgb[] = $this->getIntFromHexStr(substr($str, 4, 2));
  
  return $rgb;
  
 }
}

到此,相信大家對(duì)“php怎么制作圓形用戶頭像”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI