国产激情自拍_国产9色视频_丁香花在线电影小说观看 _久久久久国产精品嫩草影院

首頁 > 編程 > 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教程

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
国产激情自拍_国产9色视频_丁香花在线电影小说观看 _久久久久国产精品嫩草影院
精品免费视频一卡2卡三卡4卡不卡| 国产精品一二三区视频| 黄色国产在线| 日本片在线看| 麻豆国产视频| 国产精品福利视频一区二区三区| 91久久精品国产性色| www.91在线播放| 国产特级嫩嫩嫩bbb| 国产福利图片| 免费av在线| 中文字幕中文字幕在线中高清免费版| 国产乱xxⅹxx国语对白| 精品麻豆一区二区三区| 九九热精品在线视频| 国产h在线观看| 欧美日韩亚洲国内综合网| 国产美女在线一区二区三区| 国产成人综合亚洲欧美在| 日本视频在线| 91在线视频免费看| www操操操| 伊人狠狠av| 国产成人精品综合网站| 免费不卡中文字幕视频| 永久av在线| 国产精品视频一区麻豆| 久久亚洲天堂| eeuss影院网站免费观看| 国产黄色高清在线| 国产一级影片| 国产字幕在线看| 欧美日韩国产亚洲沙发| 亚洲xxxxxx| 先锋影音av中文字幕| 精品一区二区91| 国产高清视频在线观看| 国产素人视频在线观看| 免费看成年人视频在线观看| 国产www在线观看| 国产区视频在线| 国产三级在线播放| 国产精品合集一区二区| 国产变态拳头交视频一区二区| 国产探花在线观看| 国产丝袜精品丝袜| 国产三级在线观看| 6699久久国产精品免费| 中文字幕2019第三页| 伊人电影在线观看| 亚洲国产aⅴ精品| 亚洲人在线播放| www.超级碰| 超碰免费在线| 懂色av一区| 国产亚洲精品久久久久久青梅| 国产麻豆综合视频在线观看| 国产字幕在线看| 国产精品久久麻豆| 天天插天天操| 大香伊人中文字幕精品| 国产一级片在线播放| 国产福利在线| 亚洲视频网站在线| 免费网站看黄yyy222| 久久精品国产亚洲777| 天堂在线中文| 97一区二区三区| 麻豆网站在线免费观看| 国产理论电影在线| 91在线看片| 九九在线视频| 中文国产字幕在线观看| 丁香在线视频| 97高清视频| 天堂资源在线中文| 天堂√中文在线| 99热最新网址| 日本一二三区视频免费高清| 日本中文字幕高清视频| 在线午夜影院| 最近免费中文字幕大全免费第三页| 国产国产国产国产国产国产| 小说区乱图片区| 国产素人视频在线观看| 麻豆视频国产| a视频在线观看| 91中文字幕网| 五月综合激情在线| 国产中文第一页| 性欧美精品xxxx| 伊人影院蕉久影院在线播放| 日本中文字幕视频在线| 黄色一级片视频| 欧美一级久久久久久久久大| 一区免费观看| 精品美女调教视频| 国产福利一区二区在线精品| 99热最新网址| 福利视频网址导航| 欧美日韩一区二区三区在线播放| 97在线免费| 一级黄色av| 亚洲一本大道| 天天插天天色| 日本成a人片在线观看| eeuss影影院www在线播放| 四虎成年永久免费网站| 日本欧洲一区| 青草视频在线播放| 丁香婷婷激情| 天堂在线免费av| 国产视频一二区| 国产福利三区| 在线视频观看亚洲| 亚洲精品天堂在线观看| 久久久久久国产视频| 国产乱精品一区二区三区| 午夜视频在线观看网站午夜视频在线| 丁香婷婷在线| 在线三级av| 丁香在线视频| 国产爆初菊在线观看免费视频网站 | 国产另类图片| 国产精品综合久久久久| 国产精品久久麻豆| 青青草视频在线免费观看| 国产伦精品一区二区三区高清版禁| 国产性一级片| 欧美日韩一区二区三区在线播放 | 亚洲免费国产| 日本成人在线播放| 国产亚洲精品拍拍拍拍拍| 精品伦理一区二区| 久久精品视频观看| 亚洲视频手机在线观看| 中文字幕国产欧美| 亚洲第一成年免费网站| 久草在线资源福利| 在线视频观看国产| 国产精品一区二三区| 四虎成人精品在永久在线观看| 尤物视频网站在线观看| 青娱乐在线视频观看| 精品无人区乱码1区2区3区免费| 国产又色又爽又黄刺激在线视频| 国产人成在线观看| 国产在线高潮| 国产在线一二三区| 麻豆网站在线| 日本高清中文字幕二区在线| 国产精品久久久精品a级小说| 久久精品无码一区二区日韩av| 精品国产一区二区三区四区阿崩 | 美女av在线播放| 91亚洲天堂| 国产视频福利| 国产一区二区三区四区尤物| 狠狠插狠狠操| 国产女王在线**视频| 国产老肥熟xxxx在线观看| 日本高清中文字幕二区在线| 亚洲第一成年免费网站| 精品美女视频在线观看免费软件| 国产视频二区| 国产精品伦一区二区三区级视频频 | а√天堂www在线а√天堂视频| 国产jizz| 亚洲国产日韩在线人成电影| av丝袜在线| 青青草在线视频免费观看| 欧美日韩久久中文字幕| 国产又色又爽又黄刺激在线视频| 五月综合网站| 精品偷拍激情视频在线观看| 国产二区三区四区| 亚洲社区在线| 国自产拍在线网站网址视频| 国产麻豆视频| 国产高清在线| 欧美性猛交xxxx免费看久久| 黄色一级视频网站| 国产精品不卡一区二区三区在线观看| 国产夫妻视频| 青青久草在线| 国产大学生粉嫩无套流白浆| av中文网站| 国产网站麻豆精品视频| 亚洲一区免费在线| 国产精品综合久久久久| 999在线视频| 国产精选在线观看| 中文字幕av高清| 国产精品一区二区资源| 99在线欧洲视频| 天天av综合网| 在线天堂av| 五月婷婷在线观看| 啪啪免费视频一区| 国产二区视频在线观看|