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

Php上传、生成缩略图、生成文字水印和图片水印

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-09 16:07:53 浏览: 评论:0 
  1. <?php 
  2. /* 
  3. '-##########################################-| 
  4. '|     程序设计:(绿竹居)                | 
  5. '|     MSN:[email]lzj_zhangjun@hotmail.com[/email]         | 
  6. '|     Email:cszjun@gmail.com              | 
  7. '|     结合自己以前做的上传和生成缩略和改编一个 
  8. '|     老前辈的生成图片水印做成这个                 | 
  9. '|     上传+生成缩略图+生成文字水印和图片水印      | 
  10. '|     可以直接引用                             | 
  11. '-##########################################-| 
  12. */ 
  13. //审明图片文件夹 
  14. $bigfolder="img"
  15. $smallfolder="smallimg"
  16. //审明文件夹名称 以年月日来建议文件夹 
  17. $fdate=date("Ymd"); 
  18. //echo $fdate; 
  19. //审明文件名称。以年月日时分秒命名 
  20. $fname=date("YmdHis"); 
  21. $bigname="0724e_com_".$fname
  22. $smallname="0724e_com_".$fname."_s"
  23. //echo $fname."<br/>".$bigname."<br/>".$smallname; 
  24. //确定大小文件夹的名称和路经 
  25. $bigaddrname=$bigfolder."/".$fdate."/".$bigname
  26. $smalladdrname=$smallfolder."/".$fdate."/".$smallname
  27. //审明小图片的高度和宽度 
  28. $RESIZEWIDTH=180; 
  29. $RESIZEHEIGHT=150; 
  30. //审明水印的文字或图片的地址及字体的地址 
  31. $imgaddr="img.jpg";    //图片水印 
  32. $fontname="www.0724e.com";  //文字水印 
  33. //充许上传的文件扩展名 
  34. $exit_name=array(".jpg",".gif",".png"); 
  35. if (isset($_POST['Submit'])){ 
  36. //上传部分---------------------------- 
  37. //定议上传名称和上传错误 
  38. $upfile=$_FILES['image']['name']; 
  39. $uperror=$_FILES['image']['error']; 
  40. //最简表单验证 
  41. switch ($uperror) { 
  42.   case 1: 
  43.       die("<div align=\"center\">上传真过PHP设置充许的最大值<a href=\"java script:history.back();\">点击返回</a></div>"); 
  44.   break
  45.   case 2: 
  46.    die("<div align=\"center\">上传超过了表单充许的最大值<a href=\"java script:history.back();\">点击返回</a></div>"); 
  47.   break
  48.   case 3: 
  49.    die("<div align=\"center\">文件只有部分被上传了<a href=\"java script:history.back();\">点击返回</a></div>"); 
  50.      break
  51.   case 4: 
  52.    die("<div align=\"center\">文件不有被上传<a href=\"java script:history.back();\">点击返回</a></div>"); 
  53.      break
  54. //检测扩展是否是充许上传的文件类型 
  55. //取得文件扩展名 
  56. $exname=strrchr($upfile,"."); 
  57. //判断取得扩展名是否在要求的扩展名内 
  58. if(!in_array($exname,$exit_name)) 
  59. die("<div align=\"center\">文件扩展名不对。只允许上传jpg gif png的图片<a href=\"java script:history.back();\">点击返回</a></div>"); 
  60. //检测存放图片的目录和子目录是否存在,如果不存在则建目录和子目录,并给目录最大权限777 对LINUX或unix对WINDOWS没必要 
  61. //大图 
  62. if (!file_exists($bigfolder)){ 
  63.   mkdir($bigfolder,0777); 
  64.   mkdir($bigfolder."/".$fdate,0777); 
  65. }else
  66.   if (!file_exists($bigfolder."/".$fdate)){ 
  67.    mkdir($bigfolder."/".$fdate,0777); 
  68.   } 
  69. //缩略图 
  70. if (!file_exists($smallfolder)){ 
  71.   mkdir($smallfolder,0777); 
  72.   mkdir($smallfolder."/".$fdate,0777); 
  73. }else
  74.   if (!file_exists($smallfolder."/".$fdate)){ 
  75.   mkdir($smallfolder."/".$fdate,0777); 
  76.   } 
  77. //创建目录结束 
  78. //得到临时上传的文件 
  79. $upfiletmp=$_FILES['image']['tmp_name']; 
  80. //判断临时文件是否存在 
  81. if ($uperror==6) 
  82. die("<div align=\"center\">找不到临时上传文件,上传失败<a href=\"java script:history.back();\">点击返回</a></div>"); 
  83. //水印部分========================================== 
  84. //水印函数开始============ 
  85. /**      $groundImage    背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式; 
  86. *      $waterPos       水印位置,有10种状态,0为随机位置; 
  87. *                      1为顶端居左,2为顶端居中,3为顶端居右; 
  88. *                      4为中部居左,5为中部居中,6为中部居右; 
  89. *                      7为底端居左,8为底端居中,9为底端居右; 
  90. *      $waterImage     图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式; 
  91. *      $waterText      文字水印,即把文字作为为水印,支持ASCII码,不支持中文; 
  92. *      $textFont       文字大小,值为1、2、3、4或5,默认为5; 
  93. *      $textColor      文字颜色,值为十六进制颜色值,默认为#FF0000(红色); 
  94. * */ 
  95. function imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText=""$textFont=5,$textColor="#FF0000"
  96.     $isWaterImage = FALSE; 
  97.     $formatMsg = "暂不支持该文件格式,请用图片处理软件将图片转换为GIF、JPG、PNG格式。"
  98.     //读取水印文件 
  99.     if(!emptyempty($waterImage) && file_exists($waterImage)) { 
  100.         $isWaterImage = TRUE; 
  101.         $water_info = getimagesize($waterImage); 
  102.         $water_w    = $water_info[0];//取得水印图片的宽 
  103.         $water_h    = $water_info[1];//取得水印图片的高 
  104.         switch($water_info[2])  {   //取得水印图片的格式   
  105.             case 1:$water_im = imagecreatefromgif($waterImage);break
  106.             case 2:$water_im = imagecreatefromjpeg($waterImage);break
  107.             case 3:$water_im = imagecreatefrompng($waterImage);break
  108.             default:die($formatMsg); 
  109.         } 
  110.     } 
  111.     //读取背景图片 
  112.     if(!emptyempty($groundImage) && file_exists($groundImage)) { 
  113.         $ground_info = getimagesize($groundImage); 
  114.         $ground_w    = $ground_info[0];//取得背景图片的宽 
  115.         $ground_h    = $ground_info[1];//取得背景图片的高 
  116.         switch($ground_info[2]) {   //取得背景图片的格式   
  117.             case 1:$ground_im = imagecreatefromgif($groundImage);break
  118.             case 2:$ground_im = imagecreatefromjpeg($groundImage);break
  119.             case 3:$ground_im = imagecreatefrompng($groundImage);break
  120.             default:die($formatMsg); 
  121.         } 
  122.     } else { 
  123.         die("需要加水印的图片不存在!"); 
  124.     } 
  125.     //水印位置 
  126.     if($isWaterImage) { //图片水印   
  127.         $w = $water_w
  128.         $h = $water_h
  129.         $label = "图片的"
  130.     } else {  //文字水印 
  131.         $temp = imagettfbbox(ceil($textFont*2.5),0,"./cour.ttf",$waterText);//取得使用 TrueType 字体的文本的范围 
  132.         $w = $temp[2] - $temp[6]; 
  133.         $h = $temp[3] - $temp[7]; 
  134.         unset($temp); 
  135.         $label = "文字区域"
  136.     } 
  137.     if( ($ground_w<$w) || ($ground_h<$h) ) { 
  138.         echo "需要加水印的图片的长度或宽度比水印".$label."还小,无法生成水印!"
  139.         return
  140.     } 
  141.     switch($waterPos) { 
  142.         case 0://随机 
  143.             $posX = rand(0,($ground_w - $w)); 
  144.             $posY = rand(0,($ground_h - $h)); 
  145.             break
  146.         case 1://1为顶端居左 
  147.             $posX = 0; 
  148.             $posY = 0; 
  149.             break
  150.         case 2://2为顶端居中 
  151.             $posX = ($ground_w - $w) / 2; 
  152.             $posY = 0; 
  153.             break
  154.         case 3://3为顶端居右 
  155.             $posX = $ground_w - $w
  156.             $posY = 0; 
  157.             break
  158.         case 4://4为中部居左 
  159.             $posX = 0; 
  160.             $posY = ($ground_h - $h) / 2; 
  161.             break
  162.         case 5://5为中部居中 
  163.             $posX = ($ground_w - $w) / 2; 
  164.             $posY = ($ground_h - $h) / 2; 
  165.             break
  166.         case 6://6为中部居右 
  167.             $posX = $ground_w - $w
  168.             $posY = ($ground_h - $h) / 2; 
  169.             break
  170.         case 7://7为底端居左 
  171.             $posX = 0; 
  172.             $posY = $ground_h - $h
  173.             break
  174.         case 8://8为底端居中 
  175.             $posX = ($ground_w - $w) / 2; 
  176.             $posY = $ground_h - $h
  177.             break
  178.         case 9://9为底端居右 
  179.             $posX = $ground_w - $w
  180.             $posY = $ground_h - $h
  181.             break
  182.         default://随机 
  183.             $posX = rand(0,($ground_w - $w)); 
  184.             $posY = rand(0,($ground_h - $h)); 
  185.             break;      
  186.     } 
  187.     //设定图像的混色模式 
  188.     imagealphablending($ground_im, true); 
  189.     if($isWaterImage) { //图片水印 
  190.         imagecopy($ground_im$water_im$posX$posY, 0, 0, $water_w,$water_h);//拷贝水印到目标文件          
  191.     } else {//文字水印 
  192.         if( !emptyempty($textColor) && (strlen($textColor)==7) ) { 
  193.             $R = hexdec(substr($textColor,1,2)); 
  194.             $G = hexdec(substr($textColor,3,2)); 
  195.             $B = hexdec(substr($textColor,5)); 
  196.         } else { 
  197.             die("水印文字颜色格式不正确!"); 
  198.         } 
  199.         imagestring ( $ground_im$textFont$posX$posY$waterText, imagecolorallocate($ground_im$R$G$B));          
  200.     } 
  201.     //生成水印后的图片 
  202.     @unlink($groundImage); 
  203.     switch($ground_info[2]) {//取得背景图片的格式 
  204.         case 1:imagegif($ground_im,$groundImage);break
  205.         case 2:imagejpeg($ground_im,$groundImage);break
  206.         case 3:imagepng($ground_im,$groundImage);break
  207.         default:die($errorMsg); 
  208.     } 
  209.     //释放内存 
  210.     if(isset($water_info)) unset($water_info); 
  211.     if(isset($water_im)) imagedestroy($water_im); 
  212.     unset($ground_info); 
  213.     imagedestroy($ground_im); 
  214. //水印函数完 
  215.  
  216. //存在则移动完在上传 
  217. $goodupfile=@move_uploaded_file($upfiletmp,$bigaddrname.$exname); 
  218. if (!$goodupfile){ 
  219. die("<div align=\"center\">上传图片失败<a href=\"java script:history.back();\">点击返回</a></div>"); 
  220. }else
  221.    
  222. //文字水印 
  223.     imageWaterMark($bigaddrname.$exname,5,"",$fontname,5,"#FF0000"); 
  224.     //图片水印 
  225.     //imageWaterMark($bigaddrname.$exname,5,$imgaddr); 
  226. //结束水印部分=================================== 
  227.    
  228. //缩略图部分------------------------------------------------------------ 
  229. //判断缩略图大小函数----- 
  230.     function ResizeImage($im,$maxwidth,$maxheight,$name){ 
  231.     $width = imagesx($im); 
  232.     $height = imagesy($im); 
  233.     if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){ 
  234.         if($maxwidth && $width > $maxwidth){ 
  235.             $widthratio = $maxwidth/$width
  236.             $RESIZEWIDTH=true; 
  237.         } 
  238.         if($maxheight && $height > $maxheight){ 
  239.             $heightratio = $maxheight/$height
  240.             $RESIZEHEIGHT=true; 
  241.         } 
  242.         if($RESIZEWIDTH && $RESIZEHEIGHT){ 
  243.             if($widthratio < $heightratio){ 
  244.                 $ratio = $widthratio
  245.             }else
  246.                 $ratio = $heightratio
  247.             } 
  248.         }elseif($RESIZEWIDTH){ 
  249.             $ratio = $widthratio
  250.         }elseif($RESIZEHEIGHT){ 
  251.             $ratio = $heightratio
  252.         } 
  253.         $newwidth = $width * $ratio
  254.         $newheight = $height * $ratio
  255.         if(function_exists("imagecopyresampled")){ 
  256.               $newim = imagecreatetruecolor($newwidth$newheight); 
  257.               imagecopyresampled($newim$im, 0, 0, 0, 0, $newwidth$newheight$width$height); 
  258.         }else
  259.             $newim = imagecreate($newwidth$newheight); 
  260.               imagecopyresized($newim$im, 0, 0, 0, 0, $newwidth$newheight$width$height); 
  261.         } 
  262.         ImageJpeg ($newim,$smalladdrname.$name.".jpg"); 
  263.         ImageDestroy ($newim); 
  264.     }else
  265.         ImageJpeg ($im,$smalladdrname.$name.".jpg"); 
  266.     } 
  267.     } 
  268.     //生成部分 
  269.     if($_FILES['image']['size']){ 
  270.     if($_FILES['image']['type'] == "image/pjpeg"){ 
  271.         $im = imagecreatefromjpeg($bigaddrname.$exname); 
  272.     }elseif($_FILES['image']['type'] == "image/x-png"){ 
  273.         $im = imagecreatefrompng($bigaddrname.$exname); 
  274.     }elseif($_FILES['image']['type'] == "image/gif"){ 
  275.         $im = imagecreatefromgif($bigaddrname.$exname); 
  276.     } 
  277.     if($im){ 
  278.         if(file_exists($smalladdrname.".jpg")){ 
  279.             unlink($smalladdrname.".jpg"); 
  280.         } 
  281.         ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$smalladdrname); 
  282.         ImageDestroy ($im); 
  283.     } 
  284.     } 
  285.     echo "<div align='center'><a href='java script:window.history.back()'>上传成功</a></div>"
  286. //缩略图结束----------------------------------------------------- 
  287.    
  288. ?> 
  289.   
  290.  <form action="" method="post" enctype="multipart/form-data" name="form1" id="form1"
  291.   <input type="file" name="image" /> 
  292.   <input type="hidden" name="MAX_FILE_SIZE" value="<?=1024*100?>"
  293.   <input type="submit" name="Submit" value="上传图片" /> 
  294. </form> 

Tags: 上传 生成 缩略图 图片水印

分享到: