当前位置:首页 > PHP教程 > php图像处理 > 列表

php生成缩略图类

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-18 15:45:47 浏览: 评论:0 

,生成缩略图是当我们要上传图片时如果图片较大我们需要生成一张指定大小的小图以在列表页面显示,这样可节省资源也是现在常用的做法,下面我来分享一个php生成缩略图类,支持自定义高和宽,还支持按高和宽截图,php生成缩略图类的代码如下:

  1. class resizeimage   
  2. {   
  3.     //图片类型   
  4.     var $type;   
  5.     //实际宽度   
  6.     var $width;   
  7.     //实际高度   
  8.     var $height;   
  9.     //改变后的宽度   
  10.     var $resize_width;   
  11.     //改变后的高度   
  12.     var $resize_height;   
  13.     //是否裁图   
  14.     var $cut;   
  15.     //源图象   
  16.     var $srcimg;   
  17.     //目标图象地址   
  18.     var $dstimg;   
  19.     //临时创建的图象   
  20.     var $im;   
  21.     function resizeimage($img$wid$hei,$c,$dstpath)   
  22.     {   
  23.         $this->srcimg = $img;   
  24.         $this->resize_width = $wid;   
  25.         $this->resize_height = $hei;   
  26.         $this->cut = $c;   
  27.         //图片的类型  
  28.  
  29. $this->type = strtolower(substr(strrchr($this->srcimg,"."),1));   
  30.         //初始化图象   
  31.         $this->initi_img();   
  32.         //目标图象地址   
  33.         $this -> dst_img($dstpath);   
  34.         //--   
  35.         $this->width = imagesx($this->im);   
  36.         $this->height = imagesy($this->im);   
  37.         //生成图象   
  38.         $this->newimg();   
  39.         ImageDestroy ($this->im);   
  40.     }   
  41.     function newimg()   
  42.     {   
  43.         //改变后的图象的比例   
  44.         $resize_ratio = ($this->resize_width)/($this->resize_height);   
  45.         //实际图象的比例   
  46.         $ratio = ($this->width)/($this->height);   
  47.         if(($this->cut)=="1")   
  48.         //裁图   
  49.         {   
  50.             if($ratio>=$resize_ratio)   
  51.             //高度优先   
  52.             {   
  53.                 $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);   
  54.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width,$this->resize_height, (($this->height)*$resize_ratio), $this->height);   
  55.                 ImageJpeg ($newimg,$this->dstimg);   
  56.             }   
  57.             if($ratio<$resize_ratio)   
  58.             //宽度优先   
  59.             {   
  60.                 $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);   
  61.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width, $this->resize_height, $this->width, (($this->width)/$resize_ratio));   
  62.                 ImageJpeg ($newimg,$this->dstimg);   
  63.             }   
  64.         }   
  65.         else  
  66.         //不裁图   
  67.         {   
  68.             if($ratio>=$resize_ratio)   
  69.             {   
  70.                 $newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio);   
  71.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width, ($this->resize_width)/$ratio$this->width, $this->height);   
  72.                 ImageJpeg ($newimg,$this->dstimg);   
  73.             }   
  74.             if($ratio<$resize_ratio)   
  75.             {   
  76.                 $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,$this->resize_height);   
  77.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio$this->resize_height, $this->width, $this->height);   
  78.                 ImageJpeg ($newimg,$this->dstimg);   
  79.             }   
  80.         }   
  81.     }   
  82.     //初始化图象   
  83.     function initi_img()   
  84.     {   
  85.         if($this->type=="jpg")   
  86.         {   
  87.             $this->im = imagecreatefromjpeg($this->srcimg);   
  88.         }   
  89.         if($this->type=="gif")   
  90.         {   
  91.             $this->im = imagecreatefromgif($this->srcimg);   
  92.         }   
  93.         if($this->type=="png")   
  94.         {   
  95.             $this->im = imagecreatefrompng($this->srcimg);   
  96.         }   
  97.     }   
  98.     //图象目标地址   
  99.     function dst_img($dstpath)   
  100.     {   
  101.         $full_length  = strlen($this->srcimg);   
  102.         $type_length  = strlen($this->type);   
  103.         $name_length  = $full_length-$type_length;  
  104.  
  105.         $name         = substr($this->srcimg,0,$name_length-1);   
  106.         $this->dstimg = $dstpath;  
  107.  
  108. //echo $this->dstimg;   
  109.     }   
  110. }  
  111.  
  112. $resizeimage = new resizeimage("11.jpg""200""150""1","17.jpg");   
  113. ?> 
  114.  
  115. //实例二,代码如下: 
  116.  
  117. <?php 
  118. /** 
  119.  * 生成缩略图 
  120.  * @author yangzhiguo0903@163.com 
  121.  * @param string     源图绝对完整地址{带文件名及后缀名} 
  122.  * @param string     目标图绝对完整地址{带文件名及后缀名} 
  123.  * @param int        缩略图宽{0:此时目标高度不能为0,目标宽度为源图宽*(目标高度/源图高)} 
  124.  * @param int        缩略图高{0:此时目标宽度不能为0,目标高度为源图高*(目标宽度/源图宽)} 
  125.  * @param int        是否裁切{宽,高必须非0} 
  126.  * @param int/float  缩放{0:不缩放, 0<this<1:缩放到相应比例(此时宽高限制和裁切均失效)} 
  127.  * @return boolean 
  128.  */ 
  129. function img2thumb($src_img$dst_img$width = 75, $height = 75, $cut = 0, $proportion = 0) 
  130.     if(!is_file($src_img)) 
  131.     { 
  132.         return false; 
  133.     } 
  134.     $ot = fileext($dst_img); 
  135.     $otfunc = 'image' . ($ot == 'jpg' ? 'jpeg' : $ot); 
  136.     $srcinfo = getimagesize($src_img); 
  137.     $src_w = $srcinfo[0]; 
  138.     $src_h = $srcinfo[1]; 
  139.     $type  = strtolower(substr(image_type_to_extension($srcinfo[2]), 1)); 
  140.     $createfun = 'imagecreatefrom' . ($type == 'jpg' ? 'jpeg' : $type); 
  141.  
  142.     $dst_h = $height
  143.     $dst_w = $width
  144.     $x = $y = 0; 
  145.  
  146.     /** 
  147.      * 缩略图不超过源图尺寸(前提是宽或高只有一个) 
  148.      */ 
  149.     if(($width$src_w && $height$src_h) || ($height$src_h && $width == 0) || ($width$src_w && $height == 0)) 
  150.     { 
  151.         $proportion = 1; 
  152.     } 
  153.     if($width$src_w
  154.     { 
  155.         $dst_w = $width = $src_w
  156.     } 
  157.     if($height$src_h
  158.     { 
  159.         $dst_h = $height = $src_h
  160.     } 
  161.  
  162.     if(!$width && !$height && !$proportion
  163.     { 
  164.         return false; 
  165.     } 
  166.     if(!$proportion
  167.     { 
  168.         if($cut == 0) 
  169.         { 
  170.             if($dst_w && $dst_h
  171.             { 
  172.                 if($dst_w/$src_w$dst_h/$src_h
  173.                 { 
  174.                     $dst_w = $src_w * ($dst_h / $src_h); 
  175.                     $x = 0 - ($dst_w - $width) / 2; 
  176.                 } 
  177.                 else 
  178.                 { 
  179.                     $dst_h = $src_h * ($dst_w / $src_w); 
  180.                     $y = 0 - ($dst_h - $height) / 2; 
  181.                 } 
  182.             } 
  183.             else if($dst_w xor $dst_h
  184.             { 
  185.                 if($dst_w && !$dst_h)  //有宽无高 
  186.                 { 
  187.                     $propor = $dst_w / $src_w
  188.                     $height = $dst_h  = $src_h * $propor
  189.                 } 
  190.                 else if(!$dst_w && $dst_h)  //有高无宽 
  191.                 { 
  192.                     $propor = $dst_h / $src_h
  193.                     $width  = $dst_w = $src_w * $propor
  194.                 } 
  195.             } 
  196.         } 
  197.         else 
  198.         { 
  199.             if(!$dst_h)  //裁剪时无高 
  200.             { 
  201.                 $height = $dst_h = $dst_w
  202.             } 
  203.             if(!$dst_w)  //裁剪时无宽 
  204.             { 
  205.                 $width = $dst_w = $dst_h
  206.             } 
  207.             $propor = min(max($dst_w / $src_w$dst_h / $src_h), 1); 
  208.             $dst_w = (int)round($src_w * $propor); 
  209.             $dst_h = (int)round($src_h * $propor); 
  210.             $x = ($width - $dst_w) / 2; 
  211.             $y = ($height - $dst_h) / 2; 
  212.         } 
  213.     } 
  214.     else 
  215.     { 
  216.         $proportion = min($proportion, 1); 
  217.         $height = $dst_h = $src_h * $proportion
  218.         $width  = $dst_w = $src_w * $proportion
  219.     } 
  220.  
  221.     $src = $createfun($src_img); 
  222.     $dst = imagecreatetruecolor($width ? $width : $dst_w$height ? $height : $dst_h); 
  223.     $white = imagecolorallocate($dst, 255, 255, 255); 
  224.     imagefill($dst, 0, 0, $white); 
  225.  
  226.     if(function_exists('imagecopyresampled')) 
  227.     { 
  228.         imagecopyresampled($dst$src$x$y, 0, 0, $dst_w$dst_h$src_w$src_h); 
  229.     } 
  230.     else 
  231.     { 
  232.         imagecopyresized($dst$src$x$y, 0, 0, $dst_w$dst_h$src_w$src_h); 
  233.     } 
  234.     $otfunc($dst$dst_img); 
  235.     imagedestroy($dst); 
  236.     imagedestroy($src); 
  237.     return true; 
  238.   
  239. //使用方法,代码如下: 
  240. //开源代码phpfensi.com 
  241.  
  242. $src_img = "./ROSI_050_002.JPG"
  243. $dst_img = "./ROSI_050_002_thumb.jpg"
  244. $stat = img2thumb($src_img$dst_img$width = 200, $height = 300, $cut = 0, $proportion = 0); 
  245. if($stat){ 
  246.  echo 'Resize Image Success!<br />'
  247.  echo '<img src="'.$dst_img.'" />';  
  248. }else
  249.  echo 'Resize Image Fail!';  

Tags: php生成缩略图类

分享到: