本文实例讲述了php图像处理类。分享给大家供大家参考。具体如下:
<"' . $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程序设计有所帮助。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月19日
2024年11月19日
- 谭咏麟2024《暴风女神Lorelei》头版限量编号MQA-UHQCD[WAV+CUE]
- 群星.2003-滚石黄金十年系列33CD【滚石】【WAV+CUE】
- 萧亚轩.2008-3面夏娃【维京】【WAV+CUE】
- 唐娜.1989-那年情人节好冷【喜玛拉雅】【WAV+CUE】
- 赵传《赵传奇》 滚石SACD系列 SACD限量版[ISO][1.1G]
- 黄龄《痒》天韵文化[WAV+CUE][1G]
- 张学友《走过1999》2023头版蜚声环球限量编号[低速原抓WAV+CUE][1G]
- 田震《真的田震精品集》头版限量编号24K金碟[低速原抓WAV+CUE][1G]
- 林俊杰《伟大的渺小》华纳[WAV+CUE][1G]
- 谭艳《遗憾DSD》2023 [WAV+CUE][1G]
- Beyond2024《真的见证》头版限量编号MQA-UHQCD[WAV+CUE]
- 瑞鸣唱片2024-《荒城之月》SACD传统民谣[ISO]
- 好薇2024《兵哥哥》1:124K黄金母盘[WAV+CUE]
- 胡歌.2006-珍惜(EP)【步升大风】【FLAC分轨】
- 洪荣宏.2014-拼乎自己看【华特】【WAV+CUE】