cooant
高级会员

被特殊照顾的VIP会员
UID 25785
精华
0
积分 567
帖子 553
金钱 567 喜悦币
威望 0
人脉 0
阅读权限 50
注册 2004-1-16 来自 中华人民共和国
状态 离线
|
发个缩略图,自己定义图的长宽,不会变形
不会变形,但是比例不要太夸张了。
<?php class resizeimage { //图片类型 var $type; //实际宽度 var $width; //实际高度 var $height; //改变后的宽度 var $resize_width; //改变后的高度 var $resize_height; //源图象 var $srcimg; //目标图象地址 var $dstimg; //临????建的图象 var $im;
function resizeimage($img, $wid, $hei) { $this->srcimg = $img; $this->resize_width = $wid; $this->resize_height = $hei; //图片的类型 $this->type = substr(strrchr($this->srcimg,"."),1); //初始化图象 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); } //目标图象地址 $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 = $name."_small.".$this->type; //-- $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($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($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->width, (($this->width)/$resize_ratio)); ImageJpeg ($newimg,$this->dstimg); } } } ?>
|  精品PHP中文手册:
http://www.tripow.com/manual/php/
我的博客
http://www.cooant.com/ |
|