php制作圓形用戶頭像的實(shí)例_自定義封裝類源代碼
思路
使用圖層的方法設(shè)計,共需要創(chuàng)建3個圖像層
1.底層:最后生成的圖像
2.真實(shí)用戶頭像:作為中間層,用戶上傳的真實(shí)頭像圖片
3.圓形蒙版:作為最上層,在蒙版中繪制圓形,并設(shè)置為透明
如圖:

代碼如下:
主功能類 avatar.class.php
<?php
class avatar
{
private $fileName; //文件的絕對路徑(或基于最終調(diào)用文件的相對路徑)
private $rgb; //顏色索引(數(shù)組 array(255,255,0) 或 16進(jìn)制值 ffff00/#ffff00/ff0/#ff0)
private $size; //圖像大小
private $imgInfo; //圖像信息
/**
* 初始化
* Enter description here ...
* @param string $fileName 文件的絕對路徑(或基于最終調(diào)用文件的相對路徑)
* @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{
//有的人喜歡帶#號
$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)建一個方形圖片
$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)建一個圓形遮罩
* 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計算
$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;
}
}
以上這篇php制作圓形用戶頭像的實(shí)例_自定義封裝類源代碼就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
PHPMAILER實(shí)現(xiàn)PHP發(fā)郵件功能
這篇文章主要為大家詳細(xì)介紹了PHPMAILER實(shí)現(xiàn)PHP發(fā)郵件功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-04-04
php教程之魔術(shù)方法的使用示例(php魔術(shù)函數(shù))
這篇文章主要介紹了php的魔術(shù)方法的使用示例(php魔術(shù)函數(shù)),需要的朋友可以參考下2014-02-02
php生成EAN_13標(biāo)準(zhǔn)條形碼實(shí)例
2013-11-11
ThinkPHP設(shè)置禁止百度等搜索引擎轉(zhuǎn)碼(簡單實(shí)用)
這篇文章主要介紹了ThinkPHP設(shè)置禁止百度等搜索引擎轉(zhuǎn)碼(簡單實(shí)用)的相關(guān)資料,需要的朋友可以參考下2016-02-02
使用pthreads實(shí)現(xiàn)真正的PHP多線程(需PHP5.3以上版本)
PHP 5.3 以上版本,使用pthreads PHP擴(kuò)展,可以使PHP真正地支持多線程。多線程在處理重復(fù)性的循環(huán)任務(wù),能夠大大縮短程序執(zhí)行時間2014-05-05
在laravel中實(shí)現(xiàn)ORM模型使用第二個數(shù)據(jù)庫設(shè)置
今天小編就為大家分享一篇在laravel中實(shí)現(xiàn)ORM模型使用第二個數(shù)據(jù)庫設(shè)置,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10
關(guān)于php微信訂閱號開發(fā)之token驗(yàn)證后自動發(fā)送消息給訂閱號但是沒有消息返回的問題
最近做了個項(xiàng)目,當(dāng)token驗(yàn)證之后,發(fā)送消息給訂閱號,但是沒有消息返回,下面小編通過本篇文章給大家分享我的解決辦法2015-12-12

