欢迎来到福编程网,本站提供各种互联网专业知识!

php实现图片上传时添加文字和图片水印技巧

发布时间:2016-06-15 作者:D_aneil 来源:转载
这篇文章主要为大家详细介绍了php实现图片上传时添加文字和图片水印技巧,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实现的功能特别适用于一些商城和图片站中,分享了图片在上传时添加文字和图片水印的技巧,供大家参考,具体内容如下

1. water.class.php

代码
  1. <?php
  2. header('Content-Type:text/html;charset=utf-8');
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8. //给图片添加水印
  9. Class Water{
  10. //开启水印
  11. private $watermark_on = '1';
  12. public $water_img;
  13. //水印位置
  14. public $pos = 1;
  15. //压缩比
  16. public $pct = 80;
  17. //透明度
  18. public $quality = 80;
  19. public $text = '乐趣网zlblog.sinaapp.com';
  20. public $size = 12;
  21. public $color = '#000000';
  22. public $font = 'font.ttf';
  23. public function watermark( $img,$pos='',$out_img='',$water_img='',$text='' ){
  24. if(!$this->check($img) || !$this->watermark_on) return false;
  25. $water_img = $water_img ? $water_img : $this->water_img;
  26. //水印的开启状态
  27. $waterimg_on = $this->check($water_img) ? 1 : 0;
  28. //判断是否在原图上操作
  29. $out_img = $out_img ? $out_img : $img;
  30. //判断水印的位置
  31. $pos = $pos ? $pos : $this->pos;
  32. //水印文字
  33. $text = $text ? $text : $this->text;
  34. $img_info = getimagesize($img);
  35. $img_w = $img_info[0];
  36. $img_h = $img_info[1];
  37. //判断水印图片的类型
  38. if( $waterimg_on ){
  39. $w_info = getimagesize($water_img);
  40. $w_w = $w_info[0];
  41. $w_h = $w_info[1];
  42. if ( $img_w < $w_w || $img_h < $w_h ) return false;
  43. switch ( $w_info[2] ){
  44. case 1:
  45. $w_img = imagecreatefromgif($water_img);
  46. break;
  47. case 2:
  48. $w_img = imagecreatefromjpeg($water_img);
  49. break;
  50. case 3:
  51. $w_img = imagecreatefrompng($water_img);
  52. break;
  53. }
  54. }else{
  55. if( empty($text) || strlen($this->color)!=7 ) return FALSE;
  56. $text_info = imagettfbbox($this->size, 0, $this->font, $text);
  57. $w_w = $text_info[2] - $text_info[6];
  58. $w_h = $text_info[3] - $text_info[7];
  59. }
  60. //建立原图资源
  61. switch ( $img_info[2] ){
  62. case 1:
  63. $res_img = imagecreatefromgif($img);
  64. break;
  65. case 2:
  66. $res_img = imagecreatefromjpeg($img);
  67. break;
  68. case 3:
  69. $res_img = imagecreatefrompng($img);
  70. break;
  71. }
  72. //确定水印的位置
  73. switch ( $pos ){
  74. case 1:
  75. $x = $y =25;
  76. break;
  77. case 2:
  78. $x = ($img_w - $w_w)/2;
  79. $y = 25;
  80. break;
  81. case 3:
  82. $x = $img_w - $w_w;
  83. $y = 25;
  84. break;
  85. case 4:
  86. $x = 25;
  87. $y = ($img_h - $w_h)/2;
  88. break;
  89. case 5:
  90. $x = ($img_w - $w_w)/2;
  91. $y = ($img_h - $w_h)/2;
  92. break;
  93. case 6:
  94. $x = $img_w - $w_w;
  95. $y = ($img_h - $w_h)/2;
  96. break;
  97. case 7:
  98. $x = 25;
  99. $y = $img_h - $w_h;
  100. break;
  101. case 8:
  102. $x = ($img_w - $w_w)/2;
  103. $y = $img_h - $w_h;
  104. break;
  105. case 9:
  106. $x = $img_w - $w_w;
  107. $y = $img_h - $w_h;
  108. break;
  109. default :
  110. $x = mt_rand(25, $img_w - $w_w);
  111. $y = mt_rand(25, $img_h - $w_h);
  112. }
  113. //写入图片资源
  114. if( $waterimg_on ){
  115. imagecopymerge($res_img, $w_img, $x, $y, 0, 0, $w_w, $w_h, $this->pct);
  116. }else{
  117. $r = hexdec(substr($this->color, 1,2));
  118. $g = hexdec(substr($this->color, 3,2));
  119. $b = hexdec(substr($this->color, 5,2));
  120. $color = imagecolorallocate($res_img, $r, $g, $b);
  121. imagettftext($res_img, $this->size, 0, $x, $y, $color, $this->font, $text);
  122. }
  123. //生成图片类型
  124. switch ( $img_info[2] ){
  125. case 1:
  126. imagecreatefromgif($res_img,$out_img);
  127. break;
  128. case 2:
  129. //imagecreatefromjpeg($res_img,$out_img);
  130. imagejpeg($res_img,$out_img);
  131. break;
  132. case 3:
  133. imagejpeg($res_img,$out_img);
  134. break;
  135. }
  136. if(isset($res_img)) imagedestroy ($res_img);
  137. if(isset($w_img)) imagedestroy($w_img);
  138. return TRUE;
  139. }
  140. //验证图片是否存在
  141. private function check($img){
  142. $type = array('.jpg','.jpeg','.png','.gif');
  143. $img_type = strtolower(strrchr($img, '.'));
  144. return extension_loaded('gd') && file_exists($img) && in_array($img_type, $type);
  145. }
  146. }

2. test1.php

代码
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. //header('Content-Type:text/html;charset=utf-8');
  8. include 'water.class.php';
  9. $image = new Water();
  10. $image->watermark('12.jpg',5);
  11. //$image->watermark('12.jpg',1);

3.效果图

以上就是本文的全部内容,希望对大家学习PHP程序设计有所帮助。

相关推荐