PHP实现的给图片添加水印功能,可添加文字水印或图片水印,使用文字水印时需要提供字体文件,使用图片水印时需要提供水印图片,水印图片不能比要添加水印的图片大,请使用背景透明的水印图片。

该水印类支持自定义水印位置、自定义水印大小和水印的透明度,字体水印可自定义颜色等,功能已相应完善。

完整源代码如下(注解中已给出使用示例):

/**

* 图片加水印类,支持文字水印、透明度设置、自定义水印位置等。

* 使用示例:

* $obj = new WaterMask($imgFileName); //实例化对象

* $obj->$waterType = 1; //类型:0为文字水印、1为图片水印

* $obj->$transparent = 45; //水印透明度

* $obj->$waterStr = 'www.jb51.net'; //水印文字

* $obj->$fontSize = 18; //文字字体大小

* $obj->$fontColor = array(255,255,255); //水印文字颜色(RGB)

* $obj->$fontFile = 'AHGBold.ttf'; //字体文件

* ……

* $obj->output(); //输出水印图片文件覆盖到输入的图片文件

*/

class WaterMask{

public $waterType = 0; //水印类型:0为文字水印、1为图片水印

public $pos = 0; //水印位置

public $transparent = 45; //水印透明度

public $waterStr = 'www.jb51.net'; //水印文字

public $fontSize = 18; //文字字体大小

public $fontColor = array(255,255,255); //水印文字颜色(RGB)

public $fontFile = 'AHGBold.ttf'; //字体文件

public $waterImg = 'logo.png'; //水印图片

private $srcImg = ''; //需要添加水印的图片

private $im = ''; //图片句柄

private $water_im = ''; //水印图片句柄

private $srcImg_info = ''; //图片信息

private $waterImg_info = ''; //水印图片信息

private $str_w = ''; //水印文字宽度

private $str_h = ''; //水印文字高度

private $x = ''; //水印X坐标

private $y = ''; //水印y坐标

function __construct($img) { //析构函数

$this->srcImg = file_exists($img) ? $img : die('"'.$img.'" 源文件不存在!');

}

private function imginfo() { //获取需要添加水印的图片的信息,并载入图片。

$this->srcImg_info = getimagesize($this->srcImg);

switch ($this->srcImg_info[2]) {

case 3:

$this->im = imagecreatefrompng($this->srcImg);

break 1;

case 2:

$this->im = imagecreatefromjpeg($this->srcImg);

break 1;

case 1:

$this->im = imagecreatefromgif($this->srcImg);

break 1;

default:

die('原图片('.$this->srcImg.')格式不对,只支持PNG、JPEG、GIF。');

}

}

private function waterimginfo() { //获取水印图片的信息,并载入图片。

$this->waterImg_info = getimagesize($this->waterImg);

switch ($this->waterImg_info[2]) {

case 3:

$this->water_im = imagecreatefrompng($this->waterImg);

break 1;

case 2:

$this->water_im = imagecreatefromjpeg($this->waterImg);

break 1;

case 1:

$this->water_im = imagecreatefromgif($this->waterImg);

break 1;

default:

die('水印图片('.$this->srcImg.')格式不对,只支持PNG、JPEG、GIF。');

}

}

private function waterpos() { //水印位置算法

switch ($this->pos) {

case 0: //随机位置

$this->x = rand(0,$this->srcImg_info[0]-$this->waterImg_info[0]);

$this->y = rand(0,$this->srcImg_info[1]-$this->waterImg_info[1]);

break 1;

case 1: //上左

$this->x = 0;

$this->y = 0;

break 1;

case 2: //上中

$this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;

$this->y = 0;

break 1;

case 3: //上右

$this->x = $this->srcImg_info[0]-$this->waterImg_info[0];

$this->y = 0;

break 1;

case 4: //中左

$this->x = 0;

$this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;

break 1;

case 5: //中中

$this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;

$this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;

break 1;

case 6: //中右

$this->x = $this->srcImg_info[0]-$this->waterImg_info[0];

$this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;

break 1;

case 7: //下左

$this->x = 0;

$this->y = $this->srcImg_info[1]-$this->waterImg_info[1];

break 1;

case 8: //下中

$this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;

$this->y = $this->srcImg_info[1]-$this->waterImg_info[1];

break 1;

default: //下右

$this->x = $this->srcImg_info[0]-$this->waterImg_info[0];

$this->y = $this->srcImg_info[1]-$this->waterImg_info[1];

break 1;

}

}

private function waterimg() {

if ($this->srcImg_info[0] <= $this->waterImg_info[0] || $this->srcImg_info[1] <= $this->waterImg_info[1]){

die('水印比原图大!');

}

$this->waterpos();

$cut = imagecreatetruecolor($this->waterImg_info[0],$this->waterImg_info[1]);

imagecopy($cut,$this->im,0,0,$this->x,$this->y,$this->waterImg_info[0],$this->waterImg_info[1]);

$pct = $this->transparent;

imagecopy($cut,$this->water_im,0,0,0,0,$this->waterImg_info[0],$this->waterImg_info[1]);

imagecopymerge($this->im,$cut,$this->x,$this->y,0,0,$this->waterImg_info[0],$this->waterImg_info[1],$pct);

}

private function waterstr() {

$rect = imagettfbbox($this->fontSize,0,$this->fontFile,$this->waterStr);

$w = abs($rect[2]-$rect[6]);

$h = abs($rect[3]-$rect[7]);

$fontHeight = $this->fontSize;

$this->water_im = imagecreatetruecolor($w, $h);

imagealphablending($this->water_im,false);

imagesavealpha($this->water_im,true);

$white_alpha = imagecolorallocatealpha($this->water_im,255,255,255,127);

imagefill($this->water_im,0,0,$white_alpha);

$color = imagecolorallocate($this->water_im,$this->fontColor[0],$this->fontColor[1],$this->fontColor[2]);

imagettftext($this->water_im,$this->fontSize,0,0,$this->fontSize,$color,$this->fontFile,$this->waterStr);

$this->waterImg_info = array(0=>$w,1=>$h);

$this->waterimg();

}

function output() {

$this->imginfo();

if ($this->waterType == 0) {

$this->waterstr();

}else {

$this->waterimginfo();

$this->waterimg();

}

switch ($this->srcImg_info[2]) {

case 3:

imagepng($this->im,$this->srcImg);

break 1;

case 2:

imagejpeg($this->im,$this->srcImg);

break 1;

case 1:

imagegif($this->im,$this->srcImg);

break 1;

default:

die('添加水印失败!');

break;

}

imagedestroy($this->im);

imagedestroy($this->water_im);

}

}

?>

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

php加图片源码_PHP添加文字水印或图片水印的水印类完整源代码与使用示例相关推荐

  1. 分享66个ASP贺卡图片源码,总有一款适合您

    分享66个ASP贺卡图片源码,总有一款适合您 66个ASP贺卡图片源码下载链接:https://pan.baidu.com/s/1kkCBziEePMdsXsMb1Ytbaw?pwd=lswt  提取 ...

  2. 分享107个ASP贺卡图片源码,总有一款适合您

    分享107个ASP贺卡图片源码,总有一款适合您 107个ASP贺卡图片源码下载链接:https://pan.baidu.com/s/15zaUiNl-PifQY0SSWMjgow?pwd=a1b8  ...

  3. python爬取图片源码_半次元图片爬取-python爬取半次元图片源码下载-西西软件下载...

    python爬取半次元图片源码,由大神自制的python爬取工具,本源码针对半次元图片平台,可以爬取最新的网站图片资源,支持自定义保存目录,非常方便,需要requests库的支持,想要相关源码资源的朋 ...

  4. 【老生谈算法】MATLAB生成雪花图片源码——生成雪花图片

    MATLAB生成雪花图片源码 1.文档下载: 本算法已经整理成文档如下,有需要的朋友可以点击进行下载 序号 文档(点击下载) 本项目文档 [老生谈算法]MATLAB生成雪花图片源码.doc 2.算法详 ...

  5. 分享88个ASP贺卡图片源码,总有一款适合您

    分享88个ASP贺卡图片源码,总有一款适合您 88个ASP贺卡图片源码下载链接:https://pan.baidu.com/s/1OilB4S8FjYVi3f3q08OdUA?pwd=07dy  提取 ...

  6. html5canvas绘制图片源码,HTML5 CANVAS:绘制图片

    HTML5 CANVAS:绘制图片 通过前面的学习,我们现在已经可以在HTML5 canvas中绘制图形和文字,并给它们设置一些样式.我们还可以在中绘制图片.用于在作为绘制源的图片可以是下面的几种元素 ...

  7. PHP生成二维码并添加文字(phpqrcode类)

    先看效果图 以下是phpqrcode类文件(里面包含字体文件,可直接用) 链接: https://pan.baidu.com/s/1u_3AAFtFxWuRdsCxJtjpyQ 提取码:cy2e 生成 ...

  8. css里给文字加下划线代码,css添加文字下划线样式的方法

    css添加文字下划线样式的方法 发布时间:2020-08-31 13:54:27 来源:亿速云 阅读:65 作者:小新 这篇文章将为大家详细讲解有关css添加文字下划线样式的方法,小编觉得挺实用的,因 ...

  9. xml中加html源码,从xml获取数据以插入html标签,但在源代码中未看到

    从xml获取数据以插入到ul标签中.当我运行代码时,页面正在加载,并且我可以在浏览器上看到图像,但jquery代码不起作用(例如,单击到#GalleryList元素),因为附加代码未显示在浏览器视图源 ...

最新文章

  1. 2021-06-06
  2. 从零入门 Serverless | Knative 带来的极致 Serverless 体验
  3. php教学小结,php小结
  4. 内存版u-boot制作
  5. Android 通过字符串来获取R下面资源的ID 值 文字资源
  6. 朝鲜 APT37被指发动软件供应链攻击,瞄准股票投资人
  7. Elo rating system(Elo 打分体系)
  8. centos7 配置anaconda及anaconda常用命令
  9. 将运算放大器(运放)用作比较器
  10. unicode字符集和utf-8编码
  11. axios封装简单有效
  12. net.reflector8.5.0.179过了试用期,要求输入序列号怎么办 注册机 破解
  13. SpringBoot整合Redis实现排行榜功能
  14. pandas从excel导入数据,写入数据库
  15. 低电压的1.8V SDHC 接口静电保护
  16. 风袖电商之重构Theme业务对象
  17. 世界易学大会副主席孙志华斩获非全日制易学博士,倾情分享易学奥妙
  18. 湖南中医药大学成考2022年下学期网络课程学习与考试工作安排
  19. 湖北一公职人员泄露公民信息5万余条,非法获利23万余元
  20. 《论文阅读》Global-Local Bidirectional Reasoning for Unsupervised Representation Learning of 3D Point Clou

热门文章

  1. JavaScript学习笔记(五)
  2. [团队公告]第二次技术交流主题征集
  3. java工程前面有个红色感叹号
  4. LeetCode 402. 移掉K位数字 中等难度
  5. INVALID_HANDLE_VALUE的意思和用法
  6. 拖链电缆 机器人电缆_尼龙拖链在机器中起着电缆的作用
  7. idea设置包为层级结构?
  8. java重写的特性解释
  9. 026_Pagination分页
  10. 042_CSS3字体