errormsg; } /** * 参数设置 * @author sanshi0815 * @param string $font 字体文件带目录文字水印使用 * @param string $watermark 水印文字或者是图片地址 * @param string $srcfile 原始图片地址 * @param string $dstfile 生成新图片地址 * @return null 无返回值 */ public function set($font,$watermark,$srcfile,$dstfile) { $this->font = $font; $this->watermark = $watermark; $this->srcfile = $srcfile; $this->dstfile = $dstfile; if(empty($this->watermark )) { //无水印 $this->watettype = 0; }elseif(is_file($this->watermark)){ //图片水印 $this->watettype = 1; }else{ //文字水印 $this->watettype = 2; } } /** * 图片资源获取 成功返回数组,失败返回false * @author sanshi0815 * @param string $filename 图片地址 * @return array r{句柄},t{后缀},w{宽度},h{高度} */ private function getresource($filename) { if(!is_file($filename)) { $this->errormsg = {$filename} 不存在 line:.__line__; } $temp = explode('.',$filename); $filetype = strtolower(end($temp)); //判断后缀是否是否符合要求 if(!in_array($filetype,$this->imgtype)) { //文件类型不支持 $this->errormsg = {$filename}图片后缀类型不支持 line:.__line__; return false; } if($filetype==jpg || $filetype==jpeg) { $im=imagecreatefromjpeg($filename); }else{ $im=imagecreatefrompng($filename); } if(!$im) { //图片初始化失败 $this->errormsg = {$filename}图片初始化资源失败 line:.__line__; return false; } //源图片宽 $width=imagesx($im); //源图片高 $height=imagesy($im); if(empty($width) || empty($height)) { //图片高度宽度获取失败 $this->errormsg = {$filename}图片高度或者宽度获取失败 line:.__line__; return false; } return array(r=>$im,t=>$filetype,w=>$width,h=>$height); } /** * 原始图片全局变量设置 成功返回数组,失败返回false * @author sanshi0815 * @return array w{宽度},h{高度} */ private function initsrcimgwh() { $temp = $this->getresource($this->srcfile); if(empty($temp)) { $this->errormsg = 图像资源不存在 line:.__line__; return false; } $this->filetype = $temp['t']; $this->im=$temp['r']; return array(w=>$temp['w'],h=>$temp['h']); } /** * 固定宽度,高度 进行图片缩放 * @author sanshi0815 * @param int $width 生成图片宽度 * @param int $height 生成图片高度 * @return bool 成功为 true,失败为false */ public function resetimgwh($width,$height) { $temp = $this->initsrcimgwh(); if(empty($temp)) { $this->errormsg = 图像资源不存在 line:.__line__; return false; } $srcw = $temp['w']; $srch = $temp['h']; $detw = intval($width); $deth = intval($height); //生成新的图像资源 $om = $this->getnewimg($srcw,$srch,$detw,$deth); $temp = empty($om) ? false : $this->createimg($om,$detw,$deth); return $temp; } /** * 根据最大高度 进行图片等比缩放 * @author sanshi0815 * @param int $maxheight 生成图片高度 * @return bool 成功为 true,失败为false */ public function resetimgmaxh($maxheight) { $maxheight = intval($maxheight); $temp = $this->initsrcimgwh(); if(empty($temp)) { $this->errormsg = 图像资源不存在 line:.__line__; return false; } $srcw = $temp['w']; $srch = $temp['h']; //计算缩放比 $scale = round($maxheight/$srch,4); $detw = round($srcw*$scale); $deth = round($srch*$scale); //生成新的图像资源 $om = $this->getnewimg($srcw,$srch,$detw,$deth); $temp = empty($om) ? false : $this->createimg($om,$detw,$deth); return $temp; } /** * 根据最大宽度 进行图片等比缩放 * @author sanshi0815 * @param int $maxwidth 生成图片宽度 * @return bool 成功为 true,失败为false */ public function resetimgmaxw($maxwidth) { $temp = $this->initsrcimgwh(); if(empty($temp)) { $this->errormsg = 图像资源不存在 line:.__line__; return false; } $srcw = $temp['w']; $srch = $temp['h']; //计算缩放比 $scale = round($maxwidth/$srcw,4); $detw = round($srcw*$scale); $deth = round($srch*$scale); //生成新的图像资源 $om = $this->getnewimg($srcw,$srch,$detw,$deth); //$om = $this->im; $temp = empty($om) ? false : $this->createimg($om,$detw,$deth); return $temp; } /** * 获得缩放后的图片资源句柄 * @author sanshi0815 * @param int $srcw 原始图片宽度 * @param int $srch 原始图片高度 * @param int $detw 原始图片宽度 * @param int $deth 原始图片高度 * @return bool 成功为 true,失败为false */ private function getnewimg($srcw,$srch,$detw,$deth) { $om=imagecreatetruecolor($detw,$deth);//真色彩对gb库有要求 if(empty($om)) { $this->errormsg = imagecreatetruecolor 函数失败 line:.__line__; return false; } //imagecopyresized($om,$im,0,0,0,0,$detw,$deth,$srcw,$srch); $temp = imagecopyresampled($om,$this->im,0,0,0,0,$detw,$deth,$srcw,$srch); if(empty($temp)) { $this->errormsg = imagecopyresampled 函数失败 line:.__line__; return false; } return $om; } /** * 获得图片加文字水印后资源 * @author sanshi0815 * @param resource $im 原始资源 * @param int $detw 原始图片宽度 * @param int $deth 原始图片高度 * @return resource 成功为 水印后的图片资源,失败为false */ private function getwatermarktext($im,$detw,$deth) { if(!$is_file($this->font)) { $this->errormsg = {$this->font} 字体不存在 line:.__line__; return false; } //旋转角度 $angle = 20; $width = $detw/10; $size = $detw/8; $height = $deth; //echo $height; $black = imagecolorallocate($im, 0, 0, 0); $grey = imagecolorallocate($im, 180, 180, 180); //生成水印次数 $formax = 3; for($i=$formax;$i>=1;$i--) { $height =$height-$deth/($formax+2); //echo $height.
; $temp = imagettftext($im, $size, $angle,$width,$height, $grey, $this->font,$this->watermark); if(empty($temp)) { $this->errormsg = imagettftext 函数失败 line:.__line__; return false; } } return $im; } /** * 获得图片加图片水印后资源 * @author sanshi0815 * @param resource $im 原始资源 * @param int $detw 原始图片宽度 * @param int $deth 原始图片高度 * @return resource 成功为 水印后的图片资源,失败为false */ private function getwatermarkpic($im,$detw,$deth) { $temp = $this->getresource($this->watermark); if(empty($temp)) return false; $wm = $temp['r']; $src_x = 0; $src_y = 0; $src_w = $temp['w']; $src_h = $temp['h']; $dst_x = $detw; $dst_y = $deth; $height = $dst_y > $src_h ? ($dst_y - $src_h)/2 :0; $width = $dst_x > $src_w ? ($dst_x - $src_w)/2 : 0; $temp = imagealphablending($im,true); if(empty($temp)) { $this->errormsg = imagealphablending 函数失败 line:.__line__; return false; } $temp = imagecopymerge($im,$wm,$width,$height,0,0,$src_w,$src_h,70); if(empty($temp)) { $this->errormsg = imagecopymerge 函数失败 line:.__line__; return false; } return $im; } /** * 新图片生成 * @author sanshi0815 * @param resource $im 原始资源 * @param int $detw 原始图片宽度 * @param int $deth 原始图片高度 * @return bool 成功为true,失败为false */ private function createimg($im,$detw,$deth) { //处理水印 if($this->watettype==2) { $om = $this->getwatermarktext($im,$detw,$deth); }elseif ($this->watettype==1) { $om = $this->getwatermarkpic($im,$detw,$deth); }else{ $om = $im; } if(empty($om)) { $this->errormsg = 图片资源不存在 line:.__line__; return false; } $filetype = $this->filetype; if($filetype==jpg || $filetype==jpeg) { $temp=imagejpeg($om,$this->dstfile); }else{ $temp=imagepng($om,$this->dstfile); } return $temp; }}$file=new makeminiature();$file->set(./simhei.ttf,张磊专用,1_1453362028.png,s1_1453362028.png);$file->resetimgmaxw(800);?>
很早以前的水印类 写个东西,看到了曾经写水印类,时间太久了,使用起来有些东西不太顺手了,而且场景发生了变化,比如缩略图,更多的应该是根据最大宽度或者高度去生成而不是固定比例,因为这样出来的图片才是最佳的观赏效果,而且不会变形。所以重新改进了这个类,对于php7的支持,实际上老的类也是支持的。以前的类 http://blog.csdn.net/sanshi0815/article/details/1604905
以上就介绍了php gd库水印类7年后重构了 支持php7,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。