您好,登錄后才能下訂單哦!
利用PHP怎么實(shí)現(xiàn)一個(gè)隨機(jī)生成水印圖片功能?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
class GenerateRandomImage { /** @var integer 圖片寬度 */ public $imgWidth = 272; /** @var integer 圖片高度 */ public $imgHeight = 162; /** @var 根據(jù)type不同來(lái)生成不同的背景顏色,目前留個(gè)type分別為藍(lán)色、紫色、黃色、綠色、灰色、土黃色 */ public $type = ''; /** @var 圖片上要顯示的文字 */ public $text = ''; /** @var integer 圖片上文字的字體大小 */ public $fontSize = 16; public function __construct($type, $text) { $this->type = $type; $this->text = $text; } /** * 創(chuàng)建生成隨機(jī)圖片 * @author bignerd * @since 2017-03-21T14:49:41+0800 */ public function createImg() { /** @var 創(chuàng)建一個(gè)指定圖片大小的空調(diào)色板 $image = imagecreate($this->imgWidth, $this->imgHeight); $rgb = $this->getBackground($this->type); /** @var 為圖片創(chuàng)建一個(gè)背景色 */ $backgroundColor = imagecolorallocate($image, $rgb['r'], $rgb['g'], $rgb['b']); /** @var 創(chuàng)建文字白色字體 */ $textColor = imagecolorallocate($image, 255, 255, 255); /** @var 字體文件路徑 */ $font = $_SERVER['DOCUMENT_ROOT'].'/public/font/simhei.ttf'; $x = 18;//文字起始位置x坐標(biāo) $y = 50;//文字起始位置y坐標(biāo) /** 文字寫(xiě)入圖片 */ $angle = 0;//角度0 imagettftext($image, $this->fontSize, $angle, $x, $y, $textColor, $font, $this->text); /** @var 水印圖片路徑 **/ $waterImgPath = $this->randWaterImage(); /** @var 獲取圖片信息,返回值$waterInfo[2] 為圖片類型常量 */ $waterInfo = getimagesize($waterImgPath); /** @var 將圖片類型常量轉(zhuǎn)換為真正的類型,如png */ $waterType = image_type_to_extension($waterInfo[2], false);//獲取文件類型 $createImageFunc = 'imagecreatefrom'.$waterType; /** @var 創(chuàng)建一個(gè)水印圖片的副本 $createImageFunc 為根據(jù)圖片類型來(lái)動(dòng)態(tài)生成預(yù)調(diào)用的創(chuàng)建圖片函數(shù)*/ $mask = $createImageFunc($waterImgPath); $posX = $this->imgWidth - $waterInfo[0];//水印圖片,在目標(biāo)圖片中的位置的x坐標(biāo) $posY = $this->imgHeight - $waterInfo[1];//水印圖片,在目標(biāo)圖片中的位置的y坐標(biāo) /** http請(qǐng)求響應(yīng)類型設(shè)置為 image/png 以便直接顯示為圖片 */ header("Content-Type:image/png"); /** 水印圖片復(fù)制到創(chuàng)建的image */ imagecopy($image, $mask, $posX, $posY, 0, 0, $waterInfo[0], $waterInfo[1]); imagepng($image);//輸入圖片到瀏覽器或者文件 imagedestroy($image);//銷毀圖片 } /** * 圖片背景顏色的rgb值 * @author bignerd * @since 2017-03-21T14:50:16+0800 */ public function getBackground() { $background = [ '1'=>['r'=>0, 'g'=>160,'b'=>233], '2'=>['r'=>198,'g'=>0, 'b'=>110], '3'=>['r'=>237,'g'=>109,'b'=>0], '4'=>['r'=>33, 'g'=>148,'b'=>75], '5'=>['r'=>63, 'g'=>58, 'b'=>57], '6'=>['r'=>202,'g'=>162,'b'=>101], ]; return $background[$this->type]; } /** * 隨機(jī)水印圖片路徑 * @author bignerd * @since 2017-03-21T14:51:00+0800 * @return 路徑 */ public function randWaterImage() { $folder = [ '1'=>'product','2'=>'team','3'=>'architecture','4'=>'developer','5'=>'test','6'=>'engineer' ]; $targetFolder = $_SERVER['DOCUMENT_ROOT'].'/public/images/role/'.$folder[$this->type].'/'.rand(1,38).'.png'; return $targetFolder; } } $image = new GenerateRandomImage(1,"扛得住的MySql數(shù)據(jù)架構(gòu)"); $image->createImg();
看完上述內(nèi)容,你們掌握利用PHP怎么實(shí)現(xiàn)一個(gè)隨機(jī)生成水印圖片功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(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)容。