用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php批量生成缩略图代码

时间:2015-01-23  来源:西部数据  作者:西部数据

缩放图片的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文件的注释.
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门