当前位置:首页 > PHP教程 > php上传下载 > 列表

PHP中上传图片到服务器中程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-26 15:00:57 浏览: 评论:0 

本文章来给大家介绍PHP中上传图片到服务器中程序代码,本程序不但可以上传图片,同时还可以把上传的图片加上水印效果,代码如下:

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

Tags: PHP上传图片 服务器程序

分享到: