Blogger Information
Blog 30
fans 1
comment 0
visits 23117
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
基于PHP实现生成随机水印图片
P粉896289085
Original
623 people have browsed it

这篇文章主要介绍了基于PHP实现生成随机水印图片,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

基于PHP的GD图形库,自己生成一张图片。仅限初识GD库,实例学习。
一、需求
网站的布局用到了类似慕课网课程列表的风格,每一个课程是一个banner图,图下面是标题加简介。因为课程的数量较大没有为所有的课程设计专门的banner,所以需要按照一定的规则,来自己生成图片(本打算用div布局来解决,但div+img在响应式布局中不是很好控制)。
二、工具&素材
1.PHP开启GD图形库扩展
2.准备多个小的水印图
3.获取预生成图片的背景色RGB值
三、代码
生成图片的过程,代码中做了详细的注释。

  1. class GenerateRandomImage
  2. {
  3. /** @var integer 图片宽度 */
  4. public $imgWidth = 272;
  5. /** @var integer 图片高度 */
  6. public $imgHeight = 162;
  7. /** @var 根据type不同来生成不同的背景颜色,目前留个type分别为蓝色、紫色、黄色、绿色、灰色、土黄色 */
  8. public $type = '';
  9. /** @var 图片上要显示的文字 */
  10. public $text = '';
  11. /** @var integer 图片上文字的字体大小 */
  12. public $fontSize = 16;
  13. public function __construct($type, $text)
  14. {
  15. $this->type = $type;
  16. $this->text = $text;
  17. }
  18. /**
  19. * 创建生成随机图片
  20. * @author bignerd
  21. * @since 2017-03-21T14:49:41+0800
  22. */
  23. public function createImg()
  24. {
  25. /** @var 创建一个指定图片大小的空调色板
  26. $image = imagecreate($this->imgWidth, $this->imgHeight);
  27. $rgb = $this->getBackground($this->type);
  28. /** @var 为图片创建一个背景色 */
  29. $backgroundColor = imagecolorallocate($image, $rgb['r'], $rgb['g'], $rgb['b']);
  30. /** @var 创建文字白色字体 */
  31. $textColor = imagecolorallocate($image, 255, 255, 255);
  32. /** @var 字体文件路径 */
  33. $font = $_SERVER['DOCUMENT_ROOT'].'/public/font/simhei.ttf';
  34. $x = 18;//文字起始位置x坐标
  35. $y = 50;//文字起始位置y坐标
  36. /** 文字写入图片 */
  37. $angle = 0;//角度0
  38. imagettftext($image, $this->fontSize, $angle, $x, $y, $textColor, $font, $this->text);
  39. /** @var 水印图片路径 **/
  40. $waterImgPath = $this->randWaterImage();
  41. /** @var 获取图片信息,返回值$waterInfo[2] 为图片类型常量 */
  42. $waterInfo = getimagesize($waterImgPath);
  43. /** @var 将图片类型常量转换为真正的类型,如png */
  44. $waterType = image_type_to_extension($waterInfo[2], false);//获取文件类型
  45. $createImageFunc = 'imagecreatefrom'.$waterType;
  46. /** @var 创建一个水印图片的副本 $createImageFunc 为根据图片类型来动态生成预调用的创建图片函数*/
  47. $mask = $createImageFunc($waterImgPath);
  48. $posX = $this->imgWidth - $waterInfo[0];//水印图片,在目标图片中的位置的x坐标
  49. $posY = $this->imgHeight - $waterInfo[1];//水印图片,在目标图片中的位置的y坐标
  50. /** http请求响应类型设置为 image/png 以便直接显示为图片 */
  51. header("Content-Type:image/png");
  52. /** 水印图片复制到创建的image */
  53. imagecopy($image, $mask, $posX, $posY, 0, 0, $waterInfo[0], $waterInfo[1]);
  54. imagepng($image);//输入图片到浏览器或者文件
  55. imagedestroy($image);//销毁图片
  56. }
  57. /**
  58. * 图片背景颜色的rgb值
  59. * @author bignerd
  60. * @since 2017-03-21T14:50:16+0800
  61. */
  62. public function getBackground()
  63. {
  64. $background = [
  65. '1'=>['r'=>0, 'g'=>160,'b'=>233],
  66. '2'=>['r'=>198,'g'=>0, 'b'=>110],
  67. '3'=>['r'=>237,'g'=>109,'b'=>0],
  68. '4'=>['r'=>33, 'g'=>148,'b'=>75],
  69. '5'=>['r'=>63, 'g'=>58, 'b'=>57],
  70. '6'=>['r'=>202,'g'=>162,'b'=>101],
  71. ];
  72. return $background[$this->type];
  73. }
  74. /**
  75. * 随机水印图片路径
  76. * @author bignerd
  77. * @since 2017-03-21T14:51:00+0800
  78. * @return 路径
  79. */
  80. public function randWaterImage()
  81. {
  82. $folder = [
  83. '1'=>'product','2'=>'team','3'=>'architecture','4'=>'developer','5'=>'test','6'=>'engineer'
  84. ];
  85. $targetFolder = $_SERVER['DOCUMENT_ROOT'].'/public/images/role/'.$folder[$this->type].'/'.rand(1,38).'.png';
  86. return $targetFolder;
  87. }
  88. }
  89. $image = new GenerateRandomImage(1,"扛得住的MySql数据架构");
  90. $image->createImg();

这样我们就可以直接在页面中使用 <img src="http://xxx.com/GenerateRandomImage.php" />来直接显示图片。
注意:过程中遇到过一个问题:如果水印图片是透明的png图片,那将水印图片复制到image中时,会显示为白色背景,与我们设定 的image背景无法透明融合,所以对随机的水印图片也需要做同样的颜色处理。
四、总结
这个小示例用简单的步骤来生成一张图片,直接显示在浏览器,也可以给imagepng加第二参数,也就是路径,以保存图片。所以学会示例中的几个GD库中的方法,就可以实现创建图片、为图片添加文字水印、或图片水印。
以上就是本文的全部内容,希望对大家的学习有所帮助。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post