首页 > 开发 > PHP > 正文

php给图片加文字水印

2024-05-04 23:38:29
字体:
来源:转载
供稿:网友

本文给大家分享的是使用php实现的给图片加水印的方法,十分的细致全面,有需要的小伙伴可以参考下。

注释非常的详细了,这里就不多废话了

 

 
  1. <?php 
  2. /*给图片加文字水印的方法*/ 
  3. $dst_path = 'http://f4.topitme.com/4/15/11/1166351597fe111154l.jpg'
  4. $dst = imagecreatefromstring(file_get_contents($dst_path)); 
  5. /*imagecreatefromstring()--从字符串中的图像流新建一个图像,返回一个图像标示符,其表达了从给定字符串得来的图像 
  6. 图像格式将自动监测,只要php支持jpeg,png,gif,wbmp,gd2.*/ 
  7.  
  8. $font = './t1.ttf'
  9. $black = imagecolorallocate($dst, 0, 0, 0); 
  10. imagefttext($dst, 20, 0, 10, 30, $black$font'Hello world!'); 
  11. /*imagefttext($img,$size,$angle,$x,$y,$color,$fontfile,$text) 
  12. $img由图像创建函数返回的图像资源 
  13. size要使用的水印的字体大小 
  14. angle(角度)文字的倾斜角度,如果是0度代表文字从左往右,如果是90度代表从上往下 
  15. x,y水印文字的第一个文字的起始位置 
  16. color是水印文字的颜色 
  17. fontfile,你希望使用truetype字体的路径*/ 
  18. list($dst_w,$dst_h,$dst_type) = getimagesize($dst_path); 
  19. /*list(mixed $varname[,mixed $......])--把数组中的值赋给一些变量 
  20. 像array()一样,这不是真正的函数,而是语言结构,List()用一步操作给一组变量进行赋值*/ 
  21. /*getimagesize()能获取到什么信息? 
  22. getimagesize函数会返回图像的所有信息,包括大小,类型等等*/ 
  23. switch($dst_type){ 
  24. case 1://GIF 
  25. header("content-type:image/gif"); 
  26. imagegif($dst); 
  27. break
  28. case 2://JPG 
  29. header("content-type:image/jpeg"); 
  30. imagejpeg($dst); 
  31. break
  32. case 3://PNG 
  33. header("content-type:image/png"); 
  34. imagepng($dst); 
  35. break
  36. default
  37. break
  38. /*imagepng--以PNG格式将图像输出到浏览器或文件 
  39. imagepng()将GD图像流(image)以png格式输出到标注输出(通常为浏览器),或者如果用filename给出了文件名则将其输出到文件*/ 
  40. imagedestroy($dst); 
  41. ?> 

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表