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

php批量生成缩略图代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 10:43:24 浏览: 评论:0 

缩放图片的php代码,其中变量classes是一个数组,可以选择任意多个ini文件中指定的设置,php批量生成缩略图代码如下:

  1. <?php 
  2. $oimg = "test.jpg";//original image name 
  3. $classes = array('translation','autoheight','autowidth','stretch');//give classes for the new creating images' size which are defined in the specified ini file 
  4. $suffix = 'jpg';//the new image's suffix 
  5. $inifile = 'image.ini.php'
  6.  
  7. $size = getimagesize($oimg); 
  8. $x = $size[0]/$size[1]; 
  9. $name = explode('.',$oimg); 
  10.  
  11. if(!file_exists($inifile)) die('ini file does not exist!'); 
  12. $cn = parse_ini_file($inifile,true);//parse the class style image size from ini file 
  13. foreach($classes as $class){ 
  14.     foreach($cn as $k=>$v){ 
  15.         if($k==$class){ 
  16.             if($v['width'] && $v['height']){ 
  17.                 $thumbwidth = $v['width']; 
  18.                 $thumbheight = $v['height']; 
  19.             }elseif($v['width']){ 
  20.                 $thumbwidth = $v['width']; 
  21.                 $thumbheight = round($thumbwidth/$x); 
  22.             }elseif($v['height']){ 
  23.                 $thumbheight = $v['height']; 
  24.                 $thumbwidth = round($thumbheight*$x); 
  25.             }else
  26.                 $thumbwidth = $size[0]; 
  27.                 $thumbheight = $size[1]; 
  28.             } 
  29.             break
  30.         } 
  31.     } 
  32.     if(!isset($thumbheight) && !isset($thumbwidth)) die('ini file settings error!'); 
  33.  
  34.     $nimg = $name[0].'_'.$class.'.'.$suffix;//new image file name 
  35.     $source = imagecreatefromjpeg($oimg); 
  36.     $thumb = imagecreatetruecolor($thumbwidth$thumbheight); 
  37.     imagecopyresampled($thumb,$source,0,0,0,0,$thumbwidth,$thumbheight,$size[0],$size[1]); 
  38.  
  39.     if($suffix=='jpg'$method = 'imagejpeg'
  40.     else $method='image'.$suffix
  41.     $method($thumb$nimg); 
  42.     imagedestroy($thumb);//phpfensi.com 
  43.     imagedestroy($source); 
  44. ?> 

这是一个ini配置文件,上面的代码就要读取这个文件中的图片位置,可以多个.

<?php /*
;translate the image format using the original image size
[translation]
width=0
height=0
 
;stretch the image to the specified size
[stretch]
width=800
height=600
 
;zoom the image to the specified width with height auto size
[autoheight]
width=740
height=0
 
;zoom the image to the specified height with width auto size
[autowidth]
width=0
height=380
*/ ?>

 

注意:ini文件使用php解释时为注释文件,什么也没有输出,这是为了安全起见而故意为之,而;则是ini文件的注释.

Tags: php批量生成 缩略图代码

分享到:

相关文章