php图片处理类,生成缩略图,增加水印,获取图片信息
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 14:02:44 浏览: 评论:0
本文章提供这款图片处理类,他可以做的事情是把图片生成缩略图,可以给图片增加水印以及获取图片信息,算是比较实用代码又简洁的函数,实例代码如下:
- class image
- {
- public $info=array();
- function __construct()
- {
- !extension_loaded('gd') && exit("www.111cn.net提示:服务器环境不支持gd库");
- return true;
- }
- function image()
- {
- $this->__construct();
- }
- function thumb($image,$thumb_width=300,$thumb_height=225)
- {
- $info=$this->info($image);
- $scale=min(1,min($thumb_width/$info['width'],$thumb_height/$info['height'])); //按比例缩放
- $thumb_width=intval($info['width']*$scale);
- $thumb_height=intval($info['height']*$scale);
- $createfunc='imagecreatefrom'.($info['type']=='jpg'?'jpeg':$info['type']);
- $im=$createfunc($image);
- $thumb_im=$info['type']!='gif' && function_exists('imagecreatetruecolor')?imagecreatetruecolor($thumb_width,$thumb_height):imagecreate($thumb_width,$thumb_height);
- imagecopyresampled($thumb_im,$im,0,0,0,0,$thumb_width,$thumb_height,$info['width'],$info['height']);
- if($info['type']=='gif' || $info['type']=='png')
- {
- $bgcolor=imagecolorallocate($thumb_im,0,255,0);
- imagecolortransparent($thumb_im,$bgcolor);
- }
- $imagefunc='image'.($info['type']=='jpg'?'jpeg':$info['type']);
- $thumbname='thumb_'.$info['name'].'.'.$info['type'];
- $imagefunc($thumb_im,$info['path'].$thumbname);
- imagedestroy($im);
- imagedestroy($thumb_im);
- return $info['path'].$thumbname;
- }
- function watermark($image,$pos=9,$watermarkimg='images/watermark.gif',$pct=65,$text='',$w_font=5,$w_color='#ff0000')
- {
- $imageinfo=$this->info($image);
- $source_w=$imageinfo['width'];
- $source_h=$imageinfo['height'];
- $imagecreatefunc='imagecreatefrom'.($imageinfo['type']=='jpg'?'jpeg':$imageinfo['type']);
- $im=$imagecreatefunc($image);
- if(!emptyempty($watermarkimg) && file_exists($watermarkimg)) //添加图片水印
- {
- $iswaterimage=true;
- $watermarkinfo=$this->info($watermarkimg);
- $width=$watermarkinfo['width'];
- $height=$watermarkinfo['height'];
- $watermarkcreatefunc='imagecreatefrom'.($watermarkinfo['type']=='jpg'?'jpeg':$watermarkinfo['type']);
- $watermark_im=$watermarkcreatefunc($watermarkimg);
- }
- else //添加文字水印
- {
- $iswaterimage=false;
- if(!emptyempty($w_color) && strlen($w_color)==7)
- {
- $r=hexdec(substr($w_color,1,2));
- $g=hexdec(substr($w_color,3,2));
- $b=hexdec(substr($w_color,5,2));
- }
- $temp = imagettfbbox(ceil($w_font*2.5), 0, 'fonts/alger.ttf', $text);
- $width = $temp[2] - $temp[6];
- $height = $temp[3] - $temp[7];
- unset($temp);
- }
- switch($pos)
- {
- case 0:
- $wx = mt_rand(0,($source_w - $width));
- $wy = mt_rand(0,($source_h - $height));
- break;
- case 1:
- $wx = 5;
- $wy = 5;
- break;
- case 2:
- $wx = ($source_w - $width) / 2;
- $wy = 5;
- break;
- case 3:
- $wx = $source_w - $width-5;
- $wy = 5;
- break;
- case 4:
- $wx = 5;
- $wy = ($source_h - $height) / 2;
- break;
- case 5:
- $wx = ($source_w - $width) / 2;
- $wy = ($source_h - $height) / 2;
- break;
- case 6:
- $wx = $source_w - $width-5;
- $wy = ($source_h - $height) / 2;
- break;
- case 7:
- $wx = 5;
- $wy = $source_h - $height-5;
- break;
- case 8:
- $wx = ($source_w - $width) / 2;
- $wy = $source_h - $height-5;
- break;
- default:
- $wx = $source_w - $width-5;
- $wy = $source_h - $height-5;
- break;
- }
- if($iswaterimage)
- {
- if($imageinfo['type'] == 'png') {
- imagecopy($im, $watermark_im, $wx, $wy, 0, 0, $width, $height);
- } else {
- imagecopymerge($im, $watermark_im, $wx, $wy, 0, 0, $width, $height, $pct);
- }
- }
- else
- {
- imagestring($im,$w_font,$wx,$wy,$text,imagecolorallocate($im,$r,$g,$b));
- }
- $imagefunc='image'.($imageinfo['type']=='jpg'?'jpeg':$imageinfo['type']);
- $imagefunc($im,$image);
- imagedestroy($im);
- return true;
- }
- function info($image)
- {//开源代码phpfensi.com
- $info=array();
- $info['size']=filesize($image);
- $imageinfo=getimagesize($image);
- $info['width']=$imageinfo[0];
- $info['height']=$imageinfo[1];
- $info['width_height']=$imageinfo[3];
- $info['mime']=$imageinfo['mime'];
- unset($imageinfo);
- $imageinfo=pathinfo($image);
- $info['path']=$imageinfo['dirname'].'/';
- $info['type']=strtolower($imageinfo['extension']); //图片类型,不含'.'
- $info['name']=$imageinfo['filename'];
- unset($imageinfo,$name);
- $this->info=$info;
- return $info;
- }
- }
Tags: php图片处理类 php生成缩略图
- 上一篇:php图片水印代码
- 下一篇:php生成验证码详细教程
相关文章
- ·php常用图片处理类(2014-08-19)
- ·功能强大的PHP图片处理类(水印、透明度、旋转)(2021-06-20)
- ·php常用图片处理类(2021-07-14)
- ·php生成缩略图的例子(2014-06-19)
- ·php简单实用生成缩略图代码(2014-08-17)
- ·PHP生成同比例的缩略图实现程序(2014-08-18)
- ·php生成缩略图类(2014-08-18)
- ·php生成缩略图经典类(2014-08-19)
- ·php生成缩略图类,支持自定义高和宽,还支持按高和宽截图(2014-08-19)
- ·php图片按比较生成缩略图片代码(2014-08-19)
- ·php图片上传并生成缩略图效果(2014-08-19)
- ·php按比例生成缩略图代码(2014-08-19)
- ·php生成缩略图,文本转换成图形(2014-08-19)
- ·php 生成缩略图代码(2014-08-19)
- ·php大图生成小图代码(2014-08-19)
- ·php支持生成缩略图文件上传代码(2014-08-19)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)