亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > PHP > 正文

php圖像處理類實例

2020-03-22 20:32:19
字體:
來源:轉載
供稿:網友
private function createSrcImage () { $this- imageResource = $this- createImageFromFile(); * 跟據文件創建圖像GD 資源 * @param string $fileName 文件名 * @return gd resource html' target='_blank'>public function createImageFromFile($fileName = NULL) if (!$fileName) { $fileName = $this- fileName; $imgType = $this- imageType; if (!is_readable($fileName) || !file_exists($fileName)) { throw new Exception('Unable to open file "' . $fileName . '"'); if (!$imgType) { $imageInfo = $this- getImageInfo($fileName); $imgType = $imageInfo[2]; switch ($imgType) { case IMAGETYPE_GIF: $tempResource = imagecreatefromgif($fileName); break; case IMAGETYPE_JPEG: $tempResource = imagecreatefromjpeg($fileName); break; case IMAGETYPE_PNG: $tempResource = imagecreatefrompng($fileName); break; case IMAGETYPE_WBMP: $tempResource = imagecreatefromwbmp($fileName); break; case IMAGETYPE_XBM: $tempResource = imagecreatefromxbm($fileName); break; default: throw new Exception('Unsupport image type'); return $tempResource; * 改變圖像大小 * @param int $width 寬 * @param int $height 高 * @param string $flag 一般而言,允許截圖則用4,不允許截圖則用1; 假設要求一個為4:3比例的圖像,則:4=如果太長則自動刪除一部分 0=長寬轉換成參數指定的 1=按比例縮放,自動判斷太長還是太寬,長寬約束在參數指定內 2=以寬為約束縮放 3=以高為約束縮放 * @param string $bgcolor 如果不為null,則用這個參數指定的顏色作為背景色,并且圖像擴充到指定高寬,該參數應該是一個數組; * @return string public function resizeImage($width, $height, $flag=1, $bgcolor=null) { $widthRatio = $width/$this- imageWidth; $heightRatio = $height/$this- imageHeight; switch ($flag) { case 1: if ($this- imageHeight $height && $this- imageWidth $width) { $endWidth = $this- imageWidth; $endHeight = $this- imageHeight; //return; } elseif (($this- imageHeight * $widthRatio) $height) { $endWidth = ceil($this- imageWidth * $heightRatio); $endHeight = $height; } else { $endWidth = $width; $endHeight = ceil($this- imageHeight * $widthRatio); break; case 2: $endWidth = $width; $endHeight = ceil($this- imageHeight * $widthRatio); break; case 3: $endWidth = ceil($this- imageWidth * $heightRatio); $endHeight = $height; break; case 4: $endWidth2 = $width; $endHeight2 = $height; if ($this- imageHeight $height && $this- imageWidth $width) { $endWidth = $this- imageWidth; $endHeight = $this- imageHeight; //return; } elseif (($this- imageHeight * $widthRatio) $height) { $endWidth = ceil($this- imageWidth * $heightRatio); $endHeight = $height; } else { $endWidth = $width; $endHeight = ceil($this- imageHeight * $widthRatio); break; default: $endWidth = $width; $endHeight = $height; break; if ($this- imageResource==NULL) { $this- createSrcImage(); if($bgcolor){ $this- newResource = imagecreatetruecolor($width,$height); $bg=ImageColorAllocate($this- newResource,$bgcolor[0],$bgcolor[1],$bgcolor[2]); ImageFilledRectangle($this- newResource,0,0,$width,$height,$bg); $tox=ceil(($width-$endWidth)/2); $toy=ceil(($height-$endHeight)/2); if($tox 0) $tox=0; if($toy 0) $toy=0; }else if ($flag==4) { $this- newResource = imagecreatetruecolor($endWidth2,$endHeight2); }else { $this- newResource = imagecreatetruecolor($endWidth,$endHeight); $this- newResType = $this- imageType; imagecopyresampled($this- newResource, $this- imageResource, $tox, $toy, 0, 0, $endWidth, $endHeight,$this- imageWidth,$this- imageHeight); * 給圖像加水印 * @param string $waterContent 水印內容可以是圖像文件名,也可以是文字 * @param int $pos 位置0-9可以是數組 * @param int $textFont 字體大字,當水印內容是文字時有效 * @param string $textColor 文字顏色,當水印內容是文字時有效 * @return string public function waterMark($waterContent, $pos = 0, $textFont=5, $textColor="#ffffff") { $isWaterImage = file_exists($waterContent); if ($isWaterImage) { $waterImgRes = $this- createImageFromFile($waterContent); $waterImgInfo = $this- getImageInfo($waterContent); $waterWidth = $waterImgInfo[0]; $waterHeight = $waterImgInfo[1]; } else { $waterText = $waterContent; //$temp = @imagettfbbox(ceil($textFont*2.5),0,"./cour.ttf",$waterContent); if ($temp) { $waterWidth = $temp[2]-$temp[6]; $waterHeight = $temp[3]-$temp[7]; } else { $waterWidth = 100; $waterHeight = 12; if ($this- imageResource==NULL) { $this- createSrcImage(); switch($pos) case 0://隨機 $posX = rand(0,($this- imageWidth - $waterWidth)); $posY = rand(0,($this- imageHeight - $waterHeight)); break; case 1://1為頂端居左 $posX = 0; $posY = 0; break; case 2://2為頂端居中 $posX = ($this- imageWidth - $waterWidth) / 2; $posY = 0; break; case 3://3為頂端居右 $posX = $this- imageWidth - $waterWidth; $posY = 0; break; case 4://4為中部居左 $posX = 0; $posY = ($this- imageHeight - $waterHeight) / 2; break; case 5://5為中部居中 $posX = ($this- imageWidth - $waterWidth) / 2; $posY = ($this- imageHeight - $waterHeight) / 2; break; case 6://6為中部居右 $posX = $this- imageWidth - $waterWidth; $posY = ($this- imageHeight - $waterHeight) / 2; break; case 7://7為底端居左 $posX = 0; $posY = $this- imageHeight - $waterHeight; break; case 8://8為底端居中 $posX = ($this- imageWidth - $waterWidth) / 2; $posY = $this- imageHeight - $waterHeight; break; case 9://9為底端居右 $posX = $this- imageWidth - $waterWidth-20; $posY = $this- imageHeight - $waterHeight-10; break; default://隨機 $posX = rand(0,($this- imageWidth - $waterWidth)); $posY = rand(0,($this- imageHeight - $waterHeight)); break; imagealphablending($this- imageResource, true); if($isWaterImage) { imagecopy($this- imageResource, $waterImgRes, $posX, $posY, 0, 0, $waterWidth,$waterHeight); } else { $R = hexdec(substr($textColor,1,2)); $G = hexdec(substr($textColor,3,2)); $B = hexdec(substr($textColor,5)); $textColor = imagecolorallocate($this- imageResource, $R, $G, $B); imagestring ($this- imageResource, $textFont, $posX, $posY, $waterText, $textColor); $this- newResource = $this- imageResource; $this- newResType = $this- imageType; * 生成驗證碼圖片 * @param int $width 寬 * @param string $height 高 * @param int $length 長度 * @param int $validType 0=數字,1=字母,2=數字加字母 * @param string $textColor 文字顏色 * @param string $backgroundColor 背景顏色 * @return void public function imageValidate($width, $height, $length = 4, $validType = 1, $textColor = '#000000', $backgroundColor = '#ffffff') { if ($validType==1) { $validString = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $validLength = 52; } elseif ($validType==2) { $validString = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $validLength = 62; } else { $validString = '123456789'; $validLength = 9; srand((int)time()); $valid = ''; for ($i=0; $i $length; $i++) { $valid .= $validString{rand(0, $validLength-1)}; $this- newResource = imagecreate($width,$height); $bgR = hexdec(substr($backgroundColor,1,2)); $bgG = hexdec(substr($backgroundColor,3,2)); $bgB = hexdec(substr($backgroundColor,5,2)); $backgroundColor = imagecolorallocate($this- newResource, $bgR, $bgG, $bgB); $tR = hexdec(substr($textColor,1,2)); $tG = hexdec(substr($textColor,3,2)); $tB = hexdec(substr($textColor,5,2)); $textColor = imagecolorallocate($this- newResource, $tR, $tG, $tB); for ($i=0;$i strlen($valid);$i++){ imagestring($this- newResource,5,$i*$width/$length+3,2, $valid[$i],$textColor); $this- newResType = IMAGETYPE_JPEG; return $valid; * 顯示輸出圖像 * @return void public function display($fileName='', $quality=100) { $imgType = $this- newResType; $imageSrc = $this- newResource; switch ($imgType) { case IMAGETYPE_GIF: if ($fileName=='') { header('Content-type: image/gif'); imagegif($imageSrc, $fileName, $quality); break; case IMAGETYPE_JPEG: if ($fileName=='') { header('Content-type: image/jpeg'); imagejpeg($imageSrc, $fileName, $quality); break; case IMAGETYPE_PNG: if ($fileName=='') { header('Content-type: image/png'); imagepng($imageSrc); } else { imagepng($imageSrc, $fileName); break; case IMAGETYPE_WBMP: if ($fileName=='') { header('Content-type: image/wbmp'); imagewbmp($imageSrc, $fileName, $quality); break; case IMAGETYPE_XBM: if ($fileName=='') { header('Content-type: image/xbm'); imagexbm($imageSrc, $fileName, $quality); break; default: throw new Exception('Unsupport image type'); imagedestroy($imageSrc); * 保存圖像 * @param int $fileNameType 文件名類型 0使用原文件名,1使用指定的文件名,2在原文件名加上后綴,3產生隨機文件名 * @param string $folder 文件夾路徑 為空為與原文件相同 * @param string $param 參數$fileNameType為1時為文件名2時為后綴 * @return void public function save($fileNameType = 0, $folder = NULL, $param = '_miniature') { if ($folder==NULL) { $folder = dirname($this- fileName).DIRECTORY_SEPARATOR; $fileExtName = FileSystem::fileExt($this- fileName, true); $fileBesicName = FileSystem::getBasicName($this- fileName, false); switch ($fileNameType) { case 1: $newFileName = $folder.$param; break; case 2: $newFileName = $folder.$fileBesicName.$param.$fileExtName; break; case 3: $tmp = date('YmdHis'); $fileBesicName = $tmp; $i = 0; while (file_exists($folder.$fileBesicName.$fileExtName)) { $fileBesicName = $tmp.$i; $i++; $newFileName = $folder.$fileBesicName.$fileExtName; break; default: $newFileName = $this- fileName; break; $this- display($newFileName); return $newFileName; 希望本文所述對大家的php程序設計有所幫助。PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
亚洲精品一区久久久久久| 国产亚洲精品日韩| 国产视频综合在线| 久久精品视频va| 日韩精品免费在线视频观看| 97碰在线观看| 国产福利精品在线| 成人中心免费视频| 精品免费在线观看| 亚洲成在人线av| 日韩中文字幕精品| 亚洲色图美腿丝袜| 91在线视频九色| 欧美多人乱p欧美4p久久| 欧美成人性生活| 国产精品旅馆在线| 中文字幕日韩专区| 欧美色xxxx| 欧美电影在线观看| 奇门遁甲1982国语版免费观看高清| 亚洲男人第一网站| 国产精品亚洲欧美导航| 日韩美女激情视频| 欧美另类交人妖| 欧美极品欧美精品欧美视频| 日韩精品高清在线观看| 亚洲free性xxxx护士hd| 欧美亚洲午夜视频在线观看| 日韩中文字幕免费| 91产国在线观看动作片喷水| 日韩欧美一区二区三区久久| 日韩精品中文字幕视频在线| 岛国av一区二区三区| 久久久久久久久久久国产| 亚洲精品白浆高清久久久久久| 中文字幕精品久久久久| 神马久久久久久| 国产精品免费一区二区三区都可以| 青青久久av北条麻妃海外网| 综合国产在线视频| 欧美丝袜美女中出在线| 亚洲精品久久久久国产| 富二代精品短视频| 日韩亚洲综合在线| www.久久久久久.com| 亚洲福利视频二区| 一区二区三区视频免费在线观看| 亚洲网在线观看| 久久国产精品久久久久| 国产精品日韩电影| 日韩高清中文字幕| 久久久精品中文字幕| 久久精品男人天堂| 九九九热精品免费视频观看网站| 国内精品视频在线| 欧美激情国产精品| 日韩国产一区三区| 久久成人18免费网站| 97免费视频在线播放| 国产精品入口福利| 欧美巨乳在线观看| 亚洲精品资源美女情侣酒店| 久久99久久99精品免观看粉嫩| 九九热这里只有在线精品视| 国产亚洲精品久久久久久| 国自产精品手机在线观看视频| 国语自产在线不卡| 亚洲精品丝袜日韩| 久久久久久国产精品三级玉女聊斋| 亚洲精品www久久久| 精品日韩中文字幕| 中文字幕日本欧美| 亚洲日本中文字幕| 欧美激情xxxxx| 国产精品国产自产拍高清av水多| 欧美精品成人91久久久久久久| 国内精品400部情侣激情| 国产精品嫩草视频| 91最新在线免费观看| 91精品综合久久久久久五月天| 亚洲а∨天堂久久精品喷水| 最新中文字幕亚洲| 国产精品欧美日韩一区二区| 精品久久久国产精品999| 91亚洲精品视频| 欧美性xxxxx极品| 国产一区二区在线播放| 91精品视频免费看| 国产精品国产三级国产aⅴ浪潮| 国产欧美日韩亚洲精品| 伊人亚洲福利一区二区三区| 久久精品国产99国产精品澳门| 国产专区精品视频| 欧美成人午夜激情| 国产精品色婷婷视频| 亚洲自拍偷拍网址| 久久精品青青大伊人av| 色综合视频一区中文字幕| www国产亚洲精品久久网站| 97成人精品区在线播放| 成人性教育视频在线观看| 色婷婷av一区二区三区在线观看| 欧美成人精品一区| 亚洲大尺度美女在线| 国产91精品高潮白浆喷水| 国产精品video| 精品女同一区二区三区在线播放| 日本不卡视频在线播放| 91精品久久久久久久| 国产国语刺激对白av不卡| 亚洲综合最新在线| 久久久久成人精品| 精品magnet| 欧美孕妇孕交黑巨大网站| 日韩av在线网址| 中文字幕日韩精品有码视频| 亚洲成人在线网| 性金发美女69hd大尺寸| 欧美日韩福利视频| 国语自产精品视频在线看| 国产成人免费91av在线| 日本亚洲精品在线观看| 亚洲国产欧美久久| 欧美怡红院视频一区二区三区| 午夜精品久久久久久久99热| 欧美视频专区一二在线观看| 日韩电影大片中文字幕| 色樱桃影院亚洲精品影院| 国产精品91在线| 欧美视频在线观看免费网址| 欧美怡红院视频一区二区三区| 日韩高清电影免费观看完整版| 国产一区二区色| 成人免费视频网| 久久精品视频在线| 91在线|亚洲| 亚洲bt天天射| 成人免费网站在线| 亚洲欧美在线x视频| 欧美亚洲国产视频小说| 96sao精品视频在线观看| 久久精品人人做人人爽| 欧美成人一区二区三区电影| 亚洲qvod图片区电影| 欧美激情视频播放| 久久精品国产久精国产一老狼| 色一情一乱一区二区| 久久99国产综合精品女同| 91wwwcom在线观看| 高潮白浆女日韩av免费看| 国产成人啪精品视频免费网| 欧美高跟鞋交xxxxhd| 精品性高朝久久久久久久| 精品女厕一区二区三区| 欧美成人午夜激情| 欧美久久精品午夜青青大伊人| 亚洲国产精品久久久久秋霞不卡| 91精品国产综合久久香蕉| 久久精品亚洲国产| 欧美性黄网官网| 欧美精品国产精品日韩精品| 久久精彩免费视频| 欧美成人中文字幕| 国自在线精品视频|