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

php图片加中文水印实现代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 09:29:47 浏览: 评论:0 

php中要给中文加水印需要作一些简单的处理,一就是要把字符转换成gbk,还有就是要加载中文字体,有了这两个条件在图片加中文水印就简单了,php几个实例代码如下:

  1. //例1,代码如下: 
  2. <?php 
  3. Header("Content-type: image/png");      /*通知浏览器,要输出图像*/ 
  4. $im       = imagecreate(400 , 300);        /*定义图像的大小*/ 
  5. $gray     = ImageColorAllocate($im , 235 , 235 , 235); 
  6. $pink     = ImageColorAllocate($im, 255 , 128 , 255); 
  7.  
  8. $fontfile = "simkai.ttf"
  9.  
  10. /* $fontfile 字体的路径,视操作系统而定,可以是 simhei.ttf(黑体) , SIMKAI.TTF(楷体) , SIMFANG.TTF(仿宋) ,SIMSUN.TTC(宋体&新宋体) 等 GD 支持的中文字体*/ 
  11. $str   = iconv('GB2312','UTF-8','中文水印');     /*将 gb2312 的字符集转换成 UTF-8 的字符*/ 
  12. ImageTTFText($im, 30, 0, 100, 200, $pink , $fontfile , $str); 
  13. /* 加入中文水印 */ 
  14. Imagepng($im); 
  15. ImageDestroy($im); 
  16. ?> 
  17.  
  18. //例2,代码如下:  
  19.  
  20. <?php 
  21. // **************************************** //  
  22. // 功能:给图片添加文字 
  23. // 参数: $img 图片文件名  
  24. // $new_img 另存图片文件名,如果为空表示不另存图片  
  25. // $text 字符串内容  
  26. // text_size 字符串大小  
  27. // text_angle 字型串输出角度  
  28. // text_x 字符串输出 x 坐标  
  29. // text_y 字符串输出 y 坐标  
  30. // $text_font 字型文件名  
  31. // $r,$g,$b 字符串颜色RGB值  
  32. // **************************************** //  
  33. function img_text($img$new_img$text$text_size$text_angle$text_x$text_y$text_font$r$g$b){ 
  34.  
  35. $text=iconv("gb2312","UTF-8",$text);  
  36. Header("Content-type: image/gif");  
  37. $im = @imagecreatefromstring(file_get_contents($img)) or die ("打开图片失败!");  
  38. $color = ImageColorAllocate($im$r,$g,$b); 
  39.  
  40. //ImageTTFText(int im, int size, int angle, int x, int y, int col, string fontfile, string text):  
  41. //本函数将 TTF (TrueType Fonts) 字型文字写入图片。  
  42. //参数: size 为字形的尺寸;  
  43. // angle 为字型的角度,顺时针计算,0 度为水平(由左到右),90 度则为由下到上的文字;  
  44. // x,y 二参数为文字的坐标值 (原点为左上角);  
  45. // col 为字的颜色;  
  46. // fontfile 为字型文件名称;  
  47. // text 是字符串内容。  
  48. ImageTTFText($im$text_size$text_angle$text_x$text_y$color$text_font$text); 
  49.  
  50. if ($new_img==""):  
  51. ImageGif($im); // 不保存图片,只显示  
  52. else:  
  53. ImageGif($im,$new_img); // 保存图片,但不显示  
  54. endif
  55.  
  56. ImageDestroy($im); //结束图形,释放内存空间  
  57. }   
  58. ?> 
  59.  
  60. //例3,代码如下: 
  61.  
  62. <?php  
  63. /*  
  64. * 功能:PHP图片水印 (水印支持图片或文字)  
  65. * 参数:  
  66. * $groundImage 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式;  
  67. * $waterPos 水印位置,有10种状态,0为随机位置;  
  68. * 1为顶端居左,2为顶端居中,3为顶端居右;  
  69. * 4为中部居左,5为中部居中,6为中部居右;  
  70. * 7为底端居左,8为底端居中,9为底端居右;  
  71. * $waterImage 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式;  
  72. * $waterText 文字水印,即把文字作为为水印,支持ASCII码,不支持中文;  
  73. * $textFont 文字大小,值为1、2、3、4或5,默认为5;  
  74. * $textColor 文字颜色,值为十六进制颜色值,默认为#FF0000(红色);  
  75.  
  76. * 注意:Support GD 2.0,Support FreeType、GIF Read、GIF Create、JPG 、PNG  
  77. * $waterImage 和 $waterText 最好不要同时使用,选其中之一即可,优先使用 $waterImage。  
  78. * 当$waterImage有效时,参数$waterString、$stringFont、$stringColor均不生效。  
  79. * 加水印后的图片的文件名和 $groundImage 一样。  
  80. * 作者:longware @ 2004-11-3 14:15:13  
  81. */  
  82. function imageWaterMark($groundImage,$waterPos=0,$waterImage=”",$waterText=”",$textFont=5,$textColor=”#FF0000″)  
  83. {  
  84. $isWaterImage = FALSE;  
  85. $formatMsg = “暂不支持该文件格式,请用图片处理软件将图片转换为GIF、JPG、PNG格式。”; 
  86.  
  87. //读取水印文件  
  88. if(!emptyempty($waterImage) && file_exists($waterImage))  
  89. {  
  90. $isWaterImage = TRUE;  
  91. $water_info = getimagesize($waterImage);  
  92. $water_w = $water_info[0];//取得水印图片的宽  
  93. $water_h = $water_info[1];//取得水印图片的高 
  94.  
  95. switch($water_info[2])//取得水印图片的格式  
  96. {  
  97. case 1:$water_im = imagecreatefromgif($waterImage);break;  
  98. case 2:$water_im = imagecreatefromjpeg($waterImage);break;  
  99. case 3:$water_im = imagecreatefrompng($waterImage);break;  
  100. default:die($formatMsg);  
  101. }  
  102.  
  103. //读取背景图片  
  104. if(!emptyempty($groundImage) && file_exists($groundImage))  
  105. {  
  106. $ground_info = getimagesize($groundImage);  
  107. $ground_w = $ground_info[0];//取得背景图片的宽  
  108. $ground_h = $ground_info[1];//取得背景图片的高 
  109.  
  110. switch($ground_info[2])//取得背景图片的格式  
  111. {  
  112. case 1:$ground_im = imagecreatefromgif($groundImage);break;  
  113. case 2:$ground_im = imagecreatefromjpeg($groundImage);break;  
  114. case 3:$ground_im = imagecreatefrompng($groundImage);break;  
  115. default:die($formatMsg);  
  116. }  
  117. }  
  118. else  
  119. {  
  120. die(”需要加水印的图片不存在!”);  
  121.  
  122. //水印位置  
  123. if($isWaterImage)//图片水印  
  124. {  
  125. $w = $water_w;  
  126. $h = $water_h;  
  127. $label = “图片的”;  
  128. }  
  129. else//文字水印  
  130. {  
  131. $temp = imagettfbbox(ceil($textFont*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. {  
  139. echo “需要加水印的图片的长度或宽度比水印”.$label.”还小,无法生成水印!”;  
  140. return;  
  141. }  
  142. switch($waterPos)  
  143. {  
  144. case 0://随机  
  145. $posX = rand(0,($ground_w - $w));  
  146. $posY = rand(0,($ground_h - $h));  
  147. break;  
  148. case 1://1为顶端居左  
  149. $posX = 0;  
  150. $posY = 0;  
  151. break;  
  152. case 2://2为顶端居中  
  153. $posX = ($ground_w - $w) / 2;  
  154. $posY = 0;  
  155. break;  
  156. case 3://3为顶端居右  
  157. $posX = $ground_w - $w;  
  158. $posY = 0;  
  159. break;  
  160. case 4://4为中部居左  
  161. $posX = 0;  
  162. $posY = ($ground_h - $h) / 2;  
  163. break;  
  164. case 5://5为中部居中  
  165. $posX = ($ground_w - $w) / 2;  
  166. $posY = ($ground_h - $h) / 2;  
  167. break;  
  168. case 6://6为中部居右  
  169. $posX = $ground_w - $w;  
  170. $posY = ($ground_h - $h) / 2;  
  171. break;  
  172. case 7://7为底端居左  
  173. $posX = 0;  
  174. $posY = $ground_h - $h;  
  175. break;  
  176. case 8://8为底端居中  
  177. $posX = ($ground_w - $w) / 2;  
  178. $posY = $ground_h - $h;  
  179. break;  
  180. case 9://9为底端居右  
  181. $posX = $ground_w - $w;  
  182. $posY = $ground_h - $h;  
  183. break;  
  184. default://随机  
  185. $posX = rand(0,($ground_w - $w));  
  186. $posY = rand(0,($ground_h - $h));  
  187. break;  
  188.  
  189. //设定图像的混色模式  
  190. imagealphablending($ground_im, true); 
  191.  
  192. if($isWaterImage)//图片水印  
  193. {  
  194. imagecopy($ground_im$water_im$posX$posY, 0, 0, $water_w,$water_h);//拷贝水印到目标文件  
  195. }  
  196. else//文字水印  
  197. {  
  198. if( !emptyempty($textColor) && (strlen($textColor)==7) )  
  199. {  
  200. $R = hexdec(substr($textColor,1,2));  
  201. $G = hexdec(substr($textColor,3,2));  
  202. $B = hexdec(substr($textColor,5));  
  203. }  
  204. else  
  205. {  
  206. die(”水印文字颜色格式不正确!”);  
  207. }  
  208. imagestring ( $ground_im$textFont$posX$posY$waterText, imagecolorallocate($ground_im$R$G$B));  
  209.  
  210. //生成水印后的图片  
  211. @unlink($groundImage);  
  212. switch($ground_info[2])//取得背景图片的格式  
  213. {  
  214. case 1:imagegif($ground_im,$groundImage);break;  
  215. case 2:imagejpeg($ground_im,$groundImage);break;  
  216. case 3:imagepng($ground_im,$groundImage);break;  
  217. default:die($errorMsg);  
  218.  
  219. //释放内存  
  220. if(isset($water_info)) unset($water_info);  
  221. if(isset($water_im)) imagedestroy($water_im);  
  222. unset($ground_info);  
  223. imagedestroy($ground_im);  
  224. }  
  225. //—————————————————————————————  
  226. $id=$_REQUEST['id'];  
  227. $num = count($_FILES['userfile']['name']);  
  228. print_r($_FILES['userfile']);  
  229. print_r($_FILES['userfile']['name']); 
  230.  
  231. echo $num;  
  232. echo “<bR>”;  
  233. if(isset($id)){  
  234. for($i=0;$i<$id;$i++){ 
  235.  
  236. if(isset($_FILES) && !emptyempty($_FILES['userfile']) && $_FILES['userfile']['size']>0)  
  237. {  
  238. $uploadfile = “./”.time().”_”.$_FILES['userfile'][name][$i];  
  239. echo “<br>”;  
  240. echo $uploadfile;  
  241. if (copy($_FILES['userfile']['tmp_name'][$i], $uploadfile))  
  242. {  
  243. echo “OK<br>”; 
  244.  
  245. //文字水印  
  246. //imageWaterMark($uploadfile,5,”",”HTTP://www.lvye.info”,5,”#cccccc“); 
  247.  
  248. //图片水印  
  249. $waterImage=”logo_ok1.gif”;//水印图片路径  
  250. imageWaterMark($uploadfile,9,$waterImage); 
  251.  
  252. echo “<img src=”".$uploadfile.”” border=”0”>”;  
  253. }  
  254. else  
  255. {  
  256. echo “Fail<br>”;  
  257. }  
  258. }  
  259. }  
  260.  
  261. ?>  
  262. <form enctype=”multipart/form-data” method=”POST”>  
  263. <?php  
  264. for($a=0;$a<$id;$a++){  
  265. echo “文件: <input name=”userfile[]” type=”file”><br>”; 
  266.  
  267. }  
  268. ?>  
  269. <input type=”submit” value=”上传”>  
  270. </form> 

Tags: php图片水印 php中文水印

分享到: