PHP类使用php生成图片缩略图类
作者:bea
对图像的处理PHP做到了很好的支持,包括使用PHP画出图像、对已有的图像进行处理等。这里我向大家推荐一个PHP自定义类,对图像处理的类,生成缩略图的php类。
先看这个PHP缩略图类,然后我们再看他的一个小小的使用实例。
//使用如下类就可以生成图片缩略图,
function resizeimage($img, $wid, $hei,$c,$dstpath)
{
$this->srcimg = $img;
$this->resize_width = $wid;
$this->resize_height = $hei;
$this->cut = $c;
//图片的类型
$this->type = strtolower(substr(strrchr($this->srcimg,"."),1));
//初始化图象
$this->initi_img();
//目标图象地址
$this -> dst_img($dstpath);
//--
$this->width = imagesx($this->im);
$this->height = imagesy($this->im);
//生成图象
$this->newimg();
ImageDestroy ($this->im);
}
function newimg()
{
//改变后的图象的比例
$resize_ratio = ($this->resize_width)/($this->resize_height);
//实际图象的比例
$ratio = ($this->width)/($this->height);
if(($this->cut)=="1")
//裁图
{
if($ratio>=$resize_ratio)
//高度优先
{
$newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);
imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,$this->resize_height, (($this->height)*$resize_ratio), $this->height);
ImageJpeg ($newimg,$this->dstimg);
}
if($ratioresize_width,$this->resize_height);
imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, $this->resize_height, $this->width, (($this->width)/$resize_ratio));
ImageJpeg ($newimg,$this->dstimg);
}
}
else
//不裁图
{
if($ratio>=$resize_ratio)
{
$newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio);
imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, ($this->resize_width)/$ratio, $this->width, $this->height);
ImageJpeg ($newimg,$this->dstimg);
}
if($ratioresize_height)*$ratio,$this->resize_height);
imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio, $this->resize_height, $this->width, $this->height);
ImageJpeg ($newimg,$this->dstimg);
}
}
}
//初始化图象
function initi_img()
{
if($this->type=="jpg")
{
$this->im = imagecreatefromjpeg($this->srcimg);
}
if($this->type=="gif")
{
$this->im = imagecreatefromgif($this->srcimg);
}
if($this->type=="png")
{
$this->im = imagecreatefrompng($this->srcimg);
}
}
//图象目标地址
function dst_img($dstpath)
{
$full_length = strlen($this->srcimg);
$type_length = strlen($this->type);
$name_length = $full_length-$type_length;
$name = substr($this->srcimg,0,$name_length-1);
$this->dstimg = $dstpath;
//echo $this->dstimg;
}
}
?>
使用方法:
$resizeimage = new resizeimage("图片源文件地址", "200", "100", "0","缩略图地址");
//就只用上面的一句话,就能生成缩略图,其中,源文件和缩略图地址可以相同,200,100分别代表宽和高
猜你喜欢
您可能感兴趣的文章:
- PHP实现iframe不刷新页面上传文件
- PHP网站转移需要知道的一些事情
- PHP防止注入和开发安全的PHP代码
- PHP数组与简单对象间的转换
- 了解PHP的CURL中文函数库
- PHP备份MYSQL数据库类
- PHP使用MVC模式架构网站的误区
- 选择什么样的PHP开发框架好
- 配置FCKeditor使用到PHP代码中
- 给大家推荐几个好是PHP视频教程
- PHP适合MVC模式开发吗
- 怎样新建URL重写文件.htaccess文件
- zend studio的英文界面汉化为中文的方法
- 选择ThinkPHP框架开发PHP项目
- 编写规范的PHP代码规范编程习惯
- PHP获取客户端真是IP地址代码
- PHP学习方法和PHP经验分享
- PHP实现文件缓存PHP实现缓存代码
- PHP编写的日历代码,代码分享