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

php生成图片缩略图类程序

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

缩略图用得最多的是我们上传图片时生成一张小图,这样就可以很好的解决图片大小或影响网站整体美观的问题了,下面介绍的生成图片缩略图类都不支持图片上传,我们要先上传再调用此类来操作.

使用如下类就可以生成图片缩略图,代码如下:

  1. <?php 
  2. class resizeimage 
  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.  
  22.     function resizeimage($img$wid$hei,$c,$dstpath
  23.     { 
  24.         $this->srcimg = $img
  25.         $this->resize_width = $wid
  26.         $this->resize_height = $hei
  27.         $this->cut = $c
  28.         //图片的类型 
  29.     
  30. $this->type = strtolower(substr(strrchr($this->srcimg,"."),1)); 
  31.  
  32.         //初始化图象 
  33.         $this->initi_img(); 
  34.         //目标图象地址 
  35.         $this -> dst_img($dstpath); 
  36.         //-- 
  37.         $this->width = imagesx($this->im); 
  38.         $this->height = imagesy($this->im); 
  39.         //生成图象 
  40.         $this->newimg(); 
  41.         ImageDestroy ($this->im); 
  42.     } 
  43.     function newimg() 
  44.     { 
  45.         //改变后的图象的比例 
  46.         $resize_ratio = ($this->resize_width)/($this->resize_height); 
  47.         //实际图象的比例 
  48.         $ratio = ($this->width)/($this->height); 
  49.         if(($this->cut)=="1"
  50.         //裁图 
  51.         { 
  52.             if($ratio>=$resize_ratio
  53.             //高度优先 
  54.             { 
  55.                 $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height); 
  56.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width,$this
  57.  
  58. >resize_height, (($this->height)*$resize_ratio), $this->height); 
  59.                 ImageJpeg ($newimg,$this->dstimg); 
  60.             } 
  61.             if($ratio<$resize_ratio
  62.             //宽度优先 
  63.             { 
  64.                 $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height); 
  65.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width, $this
  66.  
  67. >resize_height, $this->width, (($this->width)/$resize_ratio)); 
  68.                 ImageJpeg ($newimg,$this->dstimg); 
  69.             } 
  70.         } 
  71.         else 
  72.         //不裁图 
  73.         { 
  74.             if($ratio>=$resize_ratio
  75.             { 
  76.                 $newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio); 
  77.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, $this->resize_width, ($this
  78.  
  79. >resize_width)/$ratio$this->width, $this->height); 
  80.                 ImageJpeg ($newimg,$this->dstimg); 
  81.             } 
  82.             if($ratio<$resize_ratio
  83.             { 
  84.                 $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,$this->resize_height); 
  85.                 imagecopyresampled($newimg$this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio
  86. //开源代码phpfensi.com 
  87. $this->resize_height, $this->width, $this->height); 
  88.                 ImageJpeg ($newimg,$this->dstimg); 
  89.             } 
  90.         } 
  91.     } 
  92.     //初始化图象 
  93.     function initi_img() 
  94.     { 
  95.         if($this->type=="jpg"
  96.         { 
  97.             $this->im = imagecreatefromjpeg($this->srcimg); 
  98.         } 
  99.         if($this->type=="gif"
  100.         { 
  101.             $this->im = imagecreatefromgif($this->srcimg); 
  102.         } 
  103.         if($this->type=="png"
  104.         { 
  105.             $this->im = imagecreatefrompng($this->srcimg); 
  106.         } 
  107.     } 
  108.     //图象目标地址 
  109.     function dst_img($dstpath
  110.     { 
  111.         $full_length  = strlen($this->srcimg); 
  112.  
  113.         $type_length  = strlen($this->type); 
  114.         $name_length  = $full_length-$type_length
  115.  
  116.  
  117.         $name         = substr($this->srcimg,0,$name_length-1); 
  118.         $this->dstimg = $dstpath
  119.  
  120.  
  121. //echo $this->dstimg; 
  122.     } 
  123. ?> 

类的调用方法:

$resizeimage = new resizeimage("图片源文件地址", "200", "100", "0","缩略图地址");

就只用上面的一句话,就能生成缩略图,其中,源文件和缩略图地址可以相同,200,100分别代表宽和高.

实例2:PHP缩略图 等比例无损压缩,可填充空白区域补充色,代码如下:

  1. <?php 
  2. error_reporting( E_ALL ); 
  3.  
  4. // 测试 
  5. imagezoom('1.jpg''2.jpg', 400, 300, '#FFFFFF'); 
  6.  
  7. /* 
  8.     php缩略图函数: 
  9.         等比例无损压缩,可填充补充色 author: 华仔 
  10.     主持格式: 
  11.         bmp 、jpg 、gif、png 
  12.     param: 
  13.         @srcimage : 要缩小的图片 
  14.         @dstimage : 要保存的图片 
  15.         @dst_width: 缩小宽 
  16.         @dst_height: 缩小高 
  17.         @backgroundcolor: 补充色  如:#FFFFFF  支持 6位  不支持3位 
  18. */ 
  19. function imagezoom( $srcimage$dstimage,  $dst_width$dst_height$backgroundcolor ) { 
  20.          
  21.         // 中文件名乱码 
  22.         if ( PHP_OS == 'WINNT' ) { 
  23.                 $srcimage = iconv('UTF-8''GBK'$srcimage); 
  24.                 $dstimage = iconv('UTF-8''GBK'$dstimage); 
  25.         } 
  26.      
  27.     $dstimg = imagecreatetruecolor( $dst_width$dst_height ); 
  28.     $color = imagecolorallocate($dstimg 
  29.         , hexdec(substr($backgroundcolor, 1, 2)) 
  30.         , hexdec(substr($backgroundcolor, 3, 2)) 
  31.         , hexdec(substr($backgroundcolor, 5, 2)) 
  32.     ); 
  33.     imagefill($dstimg, 0, 0, $color); 
  34.      
  35.     if ( !$arr=getimagesize($srcimage) ) { 
  36.                 echo "要生成缩略图的文件不存在"
  37.                 exit
  38.         } 
  39.          
  40.     $src_width = $arr[0]; 
  41.     $src_height = $arr[1]; 
  42.     $srcimg = null; 
  43.     $method = getcreatemethod( $srcimage ); 
  44.     if ( $method ) { 
  45.         eval'$srcimg = ' . $method . ';' ); 
  46.     } 
  47.      
  48.     $dst_x = 0; 
  49.     $dst_y = 0; 
  50.     $dst_w = $dst_width
  51.     $dst_h = $dst_height
  52.     if ( ($dst_width / $dst_height - $src_width / $src_height) > 0 ) { 
  53.         $dst_w = $src_width * ( $dst_height / $src_height ); 
  54.         $dst_x = ( $dst_width - $dst_w ) / 2; 
  55.     } elseif ( ($dst_width / $dst_height - $src_width / $src_height) < 0 ) { 
  56.         $dst_h = $src_height * ( $dst_width / $src_width ); 
  57.         $dst_y = ( $dst_height - $dst_h ) / 2; 
  58.     } 
  59.  
  60.     imagecopyresampled($dstimg$srcimg$dst_x 
  61.         , $dst_y, 0, 0, $dst_w$dst_h$src_width$src_height); 
  62.      
  63.     // 保存格式 
  64.     $arr = array
  65.         'jpg' => 'imagejpeg' 
  66.         , 'jpeg' => 'imagejpeg' 
  67.         , 'png' => 'imagepng' 
  68.         , 'gif' => 'imagegif' 
  69.         , 'bmp' => 'imagebmp' 
  70.     ); 
  71.     $suffix = strtolowerarray_pop(explode('.'$dstimage ) ) ); 
  72.     if (!in_array($suffixarray_keys($arr)) ) { 
  73.         echo "保存的文件名错误"
  74.         exit
  75.     } else { 
  76.         eval$arr[$suffix] . '($dstimg, "'.$dstimage.'");' ); 
  77.     } 
  78.      
  79.     imagejpeg($dstimg$dstimage); 
  80.      
  81.     imagedestroy($dstimg); 
  82.     imagedestroy($srcimg); 
  83.      
  84.  
  85.  
  86. function getcreatemethod( $file ) { 
  87.         $arr = array
  88.                 '474946' => "imagecreatefromgif('$file')" 
  89.                 , 'FFD8FF' => "imagecreatefromjpeg('$file')" 
  90.                 , '424D' => "imagecreatefrombmp('$file')" 
  91.                 , '89504E' => "imagecreatefrompng('$file')" 
  92.         ); 
  93.         $fd = fopen$file"rb" ); 
  94.         $data = fread$fd, 3 ); 
  95.          
  96.         $data = str2hex( $data ); 
  97.          
  98.         if ( array_key_exists$data$arr ) ) { 
  99.                 return $arr[$data]; 
  100.         } elseif ( array_key_existssubstr($data, 0, 4), $arr ) ) { 
  101.                 return $arr[substr($data, 0, 4)]; 
  102.         } else { 
  103.                 return false; 
  104.         } 
  105.  
  106. function str2hex( $str ) { 
  107.         $ret = ""
  108.          
  109.         for$i = 0; $i < strlen$str ) ; $i++ ) { 
  110.                 $ret .= ord($str[$i]) >= 16 ? strvaldechex( ord($str[$i]) ) ) 
  111.                         : '0'strvaldechex( ord($str[$i]) ) ); 
  112.         } 
  113.          
  114.         return strtoupper$ret ); 
  115.  
  116. // BMP 创建函数  php本身无 
  117. function imagecreatefrombmp($filename
  118.    if (! $f1 = fopen($filename,"rb")) return FALSE; 
  119.  
  120.    $FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset"fread($f1,14)); 
  121.    if ($FILE['file_type'] != 19778) return FALSE; 
  122.  
  123.    $BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'
  124.                  '/Vcompression/Vsize_bitmap/Vhoriz_resolution'
  125.                  '/Vvert_resolution/Vcolors_used/Vcolors_important'fread($f1,40)); 
  126.    $BMP['colors'] = pow(2,$BMP['bits_per_pixel']); 
  127.    if ($BMP['size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset']; 
  128.    $BMP['bytes_per_pixel'] = $BMP['bits_per_pixel']/8; 
  129.    $BMP['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel']); 
  130.    $BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel']/4); 
  131.    $BMP['decal'] -= floor($BMP['width']*$BMP['bytes_per_pixel']/4); 
  132.    $BMP['decal'] = 4-(4*$BMP['decal']); 
  133.    if ($BMP['decal'] == 4) $BMP['decal'] = 0; 
  134.     
  135.    $PALETTE = array(); 
  136.    if ($BMP['colors'] < 16777216) 
  137.    { 
  138.     $PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors']*4)); 
  139.    } 
  140.     
  141.    $IMG = fread($f1,$BMP['size_bitmap']); 
  142.    $VIDE = chr(0); 
  143.  
  144.    $res = imagecreatetruecolor($BMP['width'],$BMP['height']); 
  145.    $P = 0; 
  146.    $Y = $BMP['height']-1; 
  147.    while ($Y >= 0) 
  148.    { 
  149.         $X=0; 
  150.         while ($X < $BMP['width']) 
  151.         { 
  152.          if ($BMP['bits_per_pixel'] == 24) 
  153.             $COLOR = unpack("V",substr($IMG,$P,3).$VIDE); 
  154.          elseif ($BMP['bits_per_pixel'] == 16) 
  155.          {   
  156.             $COLOR = unpack("n",substr($IMG,$P,2)); 
  157.             $COLOR[1] = $PALETTE[$COLOR[1]+1]; 
  158.          } 
  159.          elseif ($BMP['bits_per_pixel'] == 8) 
  160.          {   
  161.             $COLOR = unpack("n",$VIDE.substr($IMG,$P,1)); 
  162.             $COLOR[1] = $PALETTE[$COLOR[1]+1]; 
  163.          } 
  164.          elseif ($BMP['bits_per_pixel'] == 4) 
  165.          { 
  166.             $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); 
  167.             if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ; else $COLOR[1] = ($COLOR[1] & 0x0F); 
  168.             $COLOR[1] = $PALETTE[$COLOR[1]+1]; 
  169.          } 
  170.          elseif ($BMP['bits_per_pixel'] == 1) 
  171.          { 
  172.             $COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1)); 
  173.             if     (($P*8)%8 == 0) $COLOR[1] =  $COLOR[1]        >>7; 
  174.             elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6; 
  175.             elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5; 
  176.             elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4; 
  177.             elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3; 
  178.             elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2; 
  179.             elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1; 
  180.             elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1); 
  181.             $COLOR[1] = $PALETTE[$COLOR[1]+1]; 
  182.          } 
  183.          else 
  184.             return FALSE; 
  185.          imagesetpixel($res,$X,$Y,$COLOR[1]); 
  186.          $X++; 
  187.          $P += $BMP['bytes_per_pixel']; 
  188.         } 
  189.         $Y--; 
  190.         $P+=$BMP['decal']; 
  191.    } 
  192.    fclose($f1); 
  193.  
  194. return $res
  195. // BMP 保存函数,php本身无 
  196. function imagebmp ($im$fn = false) 
  197.     if (!$imreturn false; 
  198.              
  199.     if ($fn === false) $fn = 'php://output'
  200.     $f = fopen ($fn"w"); 
  201.     if (!$freturn false; 
  202.              
  203.     $biWidth = imagesx ($im); 
  204.     $biHeight = imagesy ($im); 
  205.     $biBPLine = $biWidth * 3; 
  206.     $biStride = ($biBPLine + 3) & ~3; 
  207.     $biSizeImage = $biStride * $biHeight
  208.     $bfOffBits = 54; 
  209.     $bfSize = $bfOffBits + $biSizeImage
  210.              
  211.     fwrite ($f'BM', 2); 
  212.     fwrite ($f, pack ('VvvV'$bfSize, 0, 0, $bfOffBits)); 
  213.              
  214.     fwrite ($f, pack ('VVVvvVVVVVV', 40, $biWidth$biHeight, 1, 24, 0, $biSizeImage, 0, 0, 0, 0)); 
  215.              
  216.     $numpad = $biStride - $biBPLine
  217.     for ($y = $biHeight - 1; $y >= 0; --$y
  218.     { 
  219.         for ($x = 0; $x < $biWidth; ++$x
  220.         { 
  221.             $col = imagecolorat ($im$x$y); 
  222.             fwrite ($f, pack ('V'$col), 3); 
  223.         } 
  224.         for ($i = 0; $i < $numpad; ++$i
  225.             fwrite ($f, pack ('C', 0)); 
  226.     } 
  227.     fclose ($f); 
  228.     return true; 
  229. ?> 

总结,第一个类文件不如第二个好,因为第一个生成图之后图片会有点变模糊,后面这个生成类是高质量的.

Tags: php生成图片 缩略图类

分享到: