PHP图片上传程序(完整版)

从PHP100上搜刮来的,功能很强大。几乎考虑到了每个细节,与大家分享!~~~

 

 

[php]  view plain  copy
 
  1. "Content-Type" content="text/html; charset=utf-8" />  
  2.   
  3. /****************************************************************************** 
  4.  
  5. 参数说明: 
  6. $max_file_size  : 上传文件大小限制, 单位BYTE 
  7. $destination_folder : 上传文件路径 
  8. $watermark   : 是否附加水印(1为加水印,其他为不加水印); 
  9.  
  10. 使用说明: 
  11. 1. 将PHP.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库; 
  12. 2. 将extension_dir =改为你的php_gd2.dll所在目录; 
  13. ******************************************************************************/  
  14.   
  15. //上传文件类型列表  
  16. $uptypes=array(  
  17.     'image/jpg',  
  18.     'image/jpeg',  
  19.     'image/png',  
  20.     'image/pjpeg',  
  21.     'image/gif',  
  22.     'image/bmp',  
  23.     'image/x-png'  
  24. );  
  25.   
  26. $max_file_size=2000000;     //上传文件大小限制, 单位BYTE  
  27. $destination_folder="uploadimg/"; //上传文件路径  
  28. $watermark=1;      //是否附加水印(1为加水印,其他为不加水印);  
  29. $watertype=1;      //水印类型(1为文字,2为图片)  
  30. $waterposition=1;     //水印位置(1为左下角,2为右下角,3为左上角,4为右上角,5为居中);  
  31. $waterstring="http://www.xplore.cn/";  //水印字符串  
  32. $waterimg="xplore.gif";    //水印图片  
  33. $imgpreview=1;      //是否生成预览图(1为生成,其他为不生成);  
  34. $imgpreviewsize=1/2;    //缩略图比例  
  35. ?>  
  36.   
  37.   
  38. ZwelL图片上传程序  
  39. "text/css">  
  40.   
  41.   
  42.   
  43.   
  44.   
  45. "multipart/form-data" method="post" name="upform">  
  46.   上传文件:  
  47.   "upfile" type="file">  
  48.   "submit" value="上传">
      
  49.   允许上传的文件类型为:', ',$uptypes)?>  
  50.   
  51.   
  52. if ($_SERVER['REQUEST_METHOD'] == 'POST')  
  53. {  
  54.     if (!is_uploaded_file($_FILES["upfile"][tmp_name]))  //这里的tmp_name找不到,看看屏蔽
  55.     //是否存在文件  
  56.     {  
  57.          echo "图片不存在!";  
  58.          exit;  
  59.     }  
  60.   
  61.     $file = $_FILES["upfile"];  
  62.     if($max_file_size < $file["size"])  
  63.     //检查文件大小  
  64.     {  
  65.         echo "文件太大!";  
  66.         exit;  
  67.     }  
  68.   
  69.     if(!in_array($file["type"], $uptypes))  
  70.     //检查文件类型  
  71.     {  
  72.         echo "文件类型不符!".$file["type"];  
  73.         exit;  
  74.     }  
  75.   
  76.     if(!file_exists($destination_folder))  
  77.     {  
  78.         mkdir($destination_folder);  
  79.     }  
  80.   
  81.     $filename=$file["tmp_name"];  
  82.     $image_size = getimagesize($filename);  
  83.     $pinfo=pathinfo($file["name"]);  
  84.     $ftype=$pinfo['extension'];  
  85.     $destination = $destination_folder.time().".".$ftype;  
  86.     if (file_exists($destination) && $overwrite != true)  
  87.     {  
  88.         echo "同名文件已经存在了";  
  89.         exit;  
  90.     }  
  91.   
  92.     if(!move_uploaded_file ($filename, $destination))  
  93.     {  
  94.         echo "移动文件出错";  
  95.         exit;  
  96.     }  
  97.   
  98.     $pinfo=pathinfo($destination);  
  99.     $fname=$pinfo[basename];  //这里应改成$fname=$pinfo["basename"]
  100.     echo 已经成功上传
    文件名:  ".$destination_folder.$fname."
    ";  
  101.     echo " 宽度:".$image_size[0];  
  102.     echo " 长度:".$image_size[1];  
  103.     echo "
     大小:".$file["size"]." bytes";  
  104.   
  105.     if($watermark==1)  
  106.     {  
  107.         $iinfo=getimagesize($destination,$iinfo);  
  108.         $nimage=imagecreatetruecolor($image_size[0],$image_size[1]);  
  109.         $white=imagecolorallocate($nimage,255,255,255);  
  110.         $black=imagecolorallocate($nimage,0,0,0);  
  111.         $red=imagecolorallocate($nimage,255,0,0);  
  112.         imagefill($nimage,0,0,$white);  
  113.         switch ($iinfo[2])  
  114.         {  
  115.             case 1:  
  116.             $simage =imagecreatefromgif($destination);  
  117.             break;  
  118.             case 2:  
  119.             $simage =imagecreatefromjpeg($destination);  
  120.             break;  
  121.             case 3:  
  122.             $simage =imagecreatefrompng($destination);  
  123.             break;  
  124.             case 6:  
  125.             $simage =imagecreatefromwbmp($destination);  
  126.             break;  
  127.             default:  
  128.             die("不支持的文件类型");  
  129.             exit;  
  130.         }  
  131.   
  132.         imagecopy($nimage,$simage,0,0,0,0,$image_size[0],$image_size[1]);  
  133.         imagefilledrectangle($nimage,1,$image_size[1]-15,80,$image_size[1],$white);  
  134.   
  135.         switch($watertype)  
  136.         {  
  137.             case 1:   //加水印字符串  
  138.             imagestring($nimage,2,3,$image_size[1]-15,$waterstring,$black);  
  139.             break;  
  140.             case 2:   //加水印图片  
  141.             $simage1 =imagecreatefromgif("xplore.gif");  
  142.             imagecopy($nimage,$simage1,0,0,0,0,85,15);  
  143.             imagedestroy($simage1);  
  144.             break;  
  145.         }  
  146.   
  147.         switch ($iinfo[2])  
  148.         {  
  149.             case 1:  
  150.             //imagegif($nimage, $destination);  
  151.             imagejpeg($nimage, $destination);  
  152.             break;  
  153.             case 2:  
  154.             imagejpeg($nimage, $destination);  
  155.             break;  
  156.             case 3:  
  157.             imagepng($nimage, $destination);  
  158.             break;  
  159.             case 6:  
  160.             imagewbmp($nimage, $destination);  
  161.             //imagejpeg($nimage, $destination);  
  162.             break;  
  163.         }  
  164.   
  165.         //覆盖原上传文件  
  166.         imagedestroy($nimage);  
  167.         imagedestroy($simage);  
  168.     }  
  169.   
  170.     if($imgpreview==1)  
  171.     {  
  172.     echo "
    图片预览:
    ";  
  173.     echo "$destination."\" width=".($image_size[0]*$imgpreviewsize)." height=".($image_size[1]*$imgpreviewsize);  
  174.     echo " alt=\"图片预览:\r文件名:".$destination."\r上传时间:\">";  
  175.     }  
  176. }  
  177. ?>  
  178.   
  179.  

转载于:https://www.cnblogs.com/wanshutao/p/5181105.html

你可能感兴趣的:(php)