PHP添加PNG图片背景透明水印操作类定义与用法示例


Posted in PHP onMarch 12, 2019

本文实例讲述了PHP添加PNG图片背景透明水印操作类定义与用法。分享给大家供大家参考,具体如下:

图片相关操作类

class ImageTool
{
  private $imagePath;//图片路径
  private $outputDir;//输出文件夹
  public $memoryImg;//内存图像
  public $path;
  public function __construct($imagePath, $outputDir = null)
  {
    $this->imagePath = $imagePath;
    $this->outputDir = $outputDir;
    $this->memoryImg = null;
    $this->path = null;
  }
  /**
   * 显示内存中的图片
   * @param $image
   */
  public function showImage()
  {
    if ($this->memoryImg != null) {
      $info = getimagesize($this->imagePath);
      $type = image_type_to_extension($info[2], false);
      header('Content-type:' . $info['mime']);
      $funs = "image{$type}";
      $funs($this->memoryImg);
      imagedestroy($this->memoryImg);
      $this->memoryImg = null;
    }
  }
  /**
   * 保存图片
   * @param $image  图片路径
   * @return string
   */
  private function saveImage($image)
  {
    $info = getimagesize($this->imagePath);
    $type = image_type_to_extension($info[2], false);
    $funs = "image{$type}";
    if (empty($this->outputDir)) {
      $funs($image, md5($this->imagePath) . '.' . $type);
      return md5($this->imagePath) . '.' . $type;
    } else {
      $funs($image, $this->outputDir . md5($this->imagePath) . '.' . $type);
      return $this->outputDir . md5($this->imagePath) . '.' . $type;
    }
  }
  /**
   * 压缩图片
   * @param $width 压缩后宽度
   * @param $height 压缩后高度
   * @param bool $output 是否输出文件
   * @return resource
   */
  public function compressImage($width, $height, $output = false)
  {
    $image = null;
    $info = getimagesize($this->imagePath);
    $type = image_type_to_extension($info[2], false);
    $fun = "imagecreatefrom{$type}";
    $image = $fun($this->imagePath);
    imagesavealpha($image,true);//
    $thumbnail = imagecreatetruecolor($width, $height);
    imagealphablending($thumbnail,false);//这里很重要,意思是不合并颜色,直接用$img图像颜色替换,包括透明色;
    imagesavealpha($thumbnail,true);//
    imagecopyresampled($thumbnail, $image, 0, 0, 0, 0, $width, $height, $info[0], $info[1]);
    imagedestroy($image);
    if ($output) {
      $path = $this->saveImage($thumbnail);
      $this->path = $path;
    }
    $this->memoryImg = $thumbnail;
    return $this;
  }
  /**
   * 为图像添加文字标记
   *
   * @param $content 文本内容
   * @param $size 字体大小
   * @param $font 字体样式
   * @param bool $output 是否输出文件
   * @return $this
   */
  public function addTextmark($content, $size, $font, $output = false)
  {
    $info = getimagesize($this->imagePath);
    $type = image_type_to_extension($info[2], false);
    $fun = "imagecreatefrom{$type}";
    $image = $fun($this->imagePath);
    $color = imagecolorallocatealpha($image, 0, 0, 0, 80);
    $posX = imagesx($image) - strlen($content) * $size / 2;
    $posY = imagesy($image) - $size / 1.5;
    imagettftext($image, $size, 0, $posX, $posY, $color, $font, $content);
    if ($output) {
      $this->saveImage($image);
    }
    $this->memoryImg = $image;
    return $this;
  }
  /**
   * 为图片添加水印
   *
   * @param $watermark 水印图片路径
   * @param $alpha 水印透明度(0-100)
   * @param bool $output 是否输出文件
   * @return $this
   */
  public function addWatermark($watermark, $alpha, $output = false)
  {
    $image_info = getimagesize($this->imagePath);
    $image_type = image_type_to_extension($image_info[2], false);
    $image_fun = "imagecreatefrom{$image_type}";
    $image = $image_fun($this->imagePath);
    $mark_info = getimagesize($watermark);
    $mark_type = image_type_to_extension($mark_info[2], false);
    $mark_fun = "imagecreatefrom{$mark_type}";
    $mark = $mark_fun($watermark);
    $posX = imagesx($image) - imagesx($mark);
    $posY = imagesy($image) - imagesy($mark);
    imagesavealpha($mark, true);
    imagecopymerge($image, $mark, $posX, $posY, 0, 0, $mark_info[0], $mark_info[1], $alpha);
    imagesavealpha($mark, true);
    if ($output) {
      $path = $this->saveImage($image);
      $this->path = $path;
    }
    $this->memoryImg = $image;
    return $this;
  }
  //用给定角度旋转图像,以jpeg图像格式为例
  /**
   * 水印图片旋转
   * @param $degrees     旋转角度
   * @param bool $output   是否保存图片
   * @return $this
   */
  function rotateImage($degrees, $output = false)
  {
    $info = getimagesize($this->imagePath);
    $type = image_type_to_extension($info[2], false);
    $fun = "imagecreatefrom{$type}";
    $image = $fun($this->imagePath);
    $block = imagecreatetruecolor(170,170);//建立一个画板
    $bg = imagecolorallocatealpha($block , 0 , 0 , 0 , 127);//拾取一个完全透明的颜色
    $image = imagerotate($image, $degrees, $bg ,0);
    imagesavealpha($image, true);
    header("Content-type: image/{$type}");
    //旋转后的图片保存
    if ($output) {
      $path = $this->saveImage($image);
      $this->path = $path;
    }
    $this->memoryImg = $image;
    return $this;
  }
  /**
  * 添加PNG透明图片
  * $bigImgPath 目标图片路径
  * $smallImgPath 水印图片路径
  * $width 相对于目标图的x轴放置位置 左上角为 0
  * $height 相对于目标图的y轴放置位置 左上角为0
  * $bigImgPaths 合成后的图片路径 若路径名与第一张或第二张路径相同 直接覆盖原图
  */
  public function mergerImg($bigImgPath, $smallImgPath, $width, $height, $bigImgPaths)
  {
    $image_kuang = imagecreatefromstring(file_get_contents($smallImgPath));
    $image_photo = imagecreatefromstring(file_get_contents($bigImgPath));
    //创建一个新的,和大图一样大的画布
    $image_3 = imageCreatetruecolor(imagesx($image_photo), imagesy($image_photo));
    //为真彩色画布创建白色背景,再设置为透明
    $color = imagecolorallocate($image_3, 255, 255, 255);
    imagefill($image_3, 0, 0, $color);
    imageColorTransparent($image_3, $color);
    /**
     * 先copy图片,再copy画框,实现png的透明效果,将图片嵌入到画框里
     * imagecopymerge与imagecopy的不同:
     * imagecopymerge 函数可以支持两个图像叠加时,设置叠加层的透明度。imagecopymerge比imagecopy多一个参数,来设置透明度
     * PHP内部源码里,imagecopymerge在透明度参数为100时,直接调用imagecopy函数。
     * imagecopy 函数则不支持叠加透明,但拷贝时可以保留png图像的原透明信息,而imagecopymerge却不支持图片的本身的透明拷贝
     * 即:使用imagecopymerge函数,可以实现打上透明度为30%的淡淡的水印图标,但图片本身的png就会变得像IE6不支持png透明那样,背景不透明了。
     * 如果使用imagecopy函数,可以保留图片本身的透明信息,但无法实现30%的淡淡水印叠加,
     */
   imagecopyresampled($image_3,$image_photo,0,0,0,0,imagesx($image_photo),imagesy($image_photo),imagesx($image_photo),imagesy($image_photo));
    imagecopy($image_3,$image_kuang, $width,$height,0,0,imagesx($image_kuang),imagesy($image_kuang));
    //存储图片路径
    imagejpeg($image_3, $bigImgPaths);
    return $bigImgPaths;
  }
}

控制器调用方法

public function test()
{
  $bigImgPath = 'ren.jpg';//原图路径
  $waterImgPath = 'tae.png';//水印图路径
  $imageTool = new ImageTool($waterImgPath, 'tmp/');//图片路径、输出文件夹
  $smallImgPath = $imageTool->rotateImage(45, true)->path;//旋转
  $width = 0;//水印所在X坐标
  $height = 0;//水印所在Y坐标
  $bigImgPaths = 'new.png';//生成原图加水印新图路径
  $path = $this->mergerImg($bigImgPath, $smallImgPath, $width, $height, $bigImgPaths);
  return view('image', compact('path'));
}

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
3
Oct 09 PHP
让你的PHP同时支持GIF、png、JPEG
Oct 09 PHP
php session应用实例 登录验证
Mar 16 PHP
php使用json_encode对变量json编码
Apr 07 PHP
PHP加密解密字符串汇总
Apr 26 PHP
讲解WordPress开发中一些常用的debug技巧
Dec 18 PHP
ThinkPHP的常用配置选项汇总
Mar 24 PHP
Laravel中基于Artisan View扩展包创建及删除应用视图文件的方法
Oct 08 PHP
php实现文件预览功能
May 23 PHP
PHP实现获取文件mime类型多种方法解析
May 28 PHP
PHP实现Snowflake生成分布式唯一ID的方法示例
Aug 30 PHP
PHP编程一定要改掉的5个不良习惯
Sep 18 PHP
PHP DB 数据库连接类定义与用法示例
Mar 11 #PHP
PHP实现的杨辉三角求解算法分析
Mar 11 #PHP
PHP实现的只保留字符串首尾字符功能示例【隐藏部分字符串】
Mar 11 #PHP
ThinkPHP5.0框架验证码功能实现方法【基于第三方扩展包】
Mar 11 #PHP
PHP join()函数用法与实例讲解
Mar 11 #PHP
PHP lcfirst()函数定义与用法
Mar 08 #PHP
浅谈PHPANALYSIS提取关键字
Mar 08 #PHP
You might like
分割GBK中文遭遇乱码的解决方法
2013/08/09 PHP
php判断表是否存在的方法
2015/06/18 PHP
常用的php图片处理类(水印、等比缩放、固定高宽)分享
2015/06/19 PHP
php图像处理函数imagecopyresampled用法详解
2016/12/02 PHP
PHP命名空间简单用法示例
2018/12/28 PHP
javascript getElementsByClassName 和js取地址栏参数
2010/01/02 Javascript
jQuery的each终止或跳过示例代码
2013/12/12 Javascript
jQuery+formdata实现上传进度特效遇到的问题
2016/02/24 Javascript
js鼠标单击和双击事件冲突问题的快速解决方法
2016/07/11 Javascript
JS实现禁止鼠标右键的功能
2016/10/15 Javascript
JavaScript事件冒泡与事件捕获实例分析
2018/08/01 Javascript
微信小程序使用wxParse解析html的方法示例
2019/01/17 Javascript
jQuery each和js forEach用法比较
2019/02/27 jQuery
JavaScript使用ul中li标签实现删除效果
2019/04/15 Javascript
小程序实现上下移动切换位置
2019/09/23 Javascript
uniapp与webview之间的相互传值的实现
2020/06/29 Javascript
[03:11]2014DOTA2国际邀请赛-VG掉入败者组 独家专访357
2014/07/19 DOTA
[38:23]完美世界DOTA2联赛循环赛 FTD vs PXG BO2第二场 11.01
2020/11/02 DOTA
python备份文件的脚本
2008/08/11 Python
Windows系统下使用flup搭建Nginx和Python环境的方法
2015/12/25 Python
Python中optparser库用法实例详解
2018/01/26 Python
python判断一个集合是否为另一个集合的子集方法
2018/05/04 Python
Python解析并读取PDF文件内容的方法
2018/05/08 Python
Python字符串的一些操作方法总结
2019/06/10 Python
Python参数传递实现过程及原理详解
2020/05/14 Python
朗仕(Lab series)英国官网:雅诗兰黛集团男士专属护肤品牌
2017/11/28 全球购物
计算机专业毕业生的自我评价
2013/11/18 职场文书
七年级生物教学反思
2014/01/30 职场文书
关于旷工的检讨书
2014/02/02 职场文书
文秘个人求职信范文
2014/04/22 职场文书
激励口号大全
2014/06/17 职场文书
九九重阳节标语
2014/10/07 职场文书
大学生自荐材料范文
2014/12/30 职场文书
英文道歉信
2015/01/20 职场文书
php访问对象中的成员的实例方法
2021/11/17 PHP
解决 Redis 秒杀超卖场景的高并发
2022/04/12 Redis