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

php简单实用生成缩略图代码

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

本程序是根据用户上传图片后再把上传的图片按比例生成缩略图,程序实例代码如下:

  1. <?php 
  2. $w?$resizewidth=$w:$resizewidth=400;// 生成图片的宽度 
  3. $h?$resizeheight=$h:$resizeheight=400;// 生成图片的高度 
  4. function resizeimage($im,$maxwidth,$maxheight,$name){ 
  5.     $width = imagesx($im); 
  6.     $height = imagesy($im); 
  7.     if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){ 
  8.         if($maxwidth && $width > $maxwidth){ 
  9.             $widthratio = $maxwidth/$width
  10.             $resizewidth=true; 
  11.         } 
  12.         if($maxheight && $height > $maxheight){ 
  13.             $heightratio = $maxheight/$height
  14.             $resizeheight=true; 
  15.         } 
  16.         if($resizewidth && $resizeheight){ 
  17.             if($widthratio < $heightratio){ 
  18.                 $ratio = $widthratio
  19.             }else
  20.                 $ratio = $heightratio
  21.             } 
  22.         }elseif($resizewidth){ 
  23.             $ratio = $widthratio
  24.         }elseif($resizeheight){ 
  25.             $ratio = $heightratio
  26.         } 
  27.         $newwidth = $width * $ratio
  28.         $newheight = $height * $ratio
  29.         if(function_exists("imagecopyresampled")){ 
  30.               $newim = imagecreatetruecolor($newwidth$newheight); 
  31.               imagecopyresampled($newim$im, 0, 0, 0, 0, $newwidth$newheight$width$height); 
  32.         }else
  33.             $newim = imagecreate($newwidth$newheight); 
  34.               imagecopyresized($newim$im, 0, 0, 0, 0, $newwidth$newheight$width$height); 
  35.         } 
  36.         imagejpeg ($newim,$name); 
  37.         imagedestroy ($newim); 
  38.     }else
  39.         imagejpeg ($im,$name); 
  40.     } 
  41. if($_files['uploadfile']['size']){ 
  42.     if($_files['uploadfile']['type'] == "image/pjpeg"){ 
  43.         $im = imagecreatefromjpeg($_files['uploadfile']['tmp_name']); 
  44.     }elseif($_files['uploadfile']['type'] == "image/x-png"){ 
  45.         $im = imagecreatefrompng($_files['uploadfile']['tmp_name']); 
  46.     }elseif($_files['uploadfile']['type'] == "image/gif"){ 
  47.         $im = imagecreatefromgif($_files['uploadfile']['tmp_name']); 
  48.     } 
  49.     if($im){ 
  50.         if(file_exists('bbs.jpg')){ 
  51.             unlink('bbs.jpg'); 
  52.         } 
  53.         resizeimage($im,$resizewidth,$resizeheight,'bbs.jpg'); 
  54.         imagedestroy ($im); 
  55.    
  56.     } 
  57. //$uploadfile="www.phpfensi.com.jpg"; 
  58. ?> 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门