当前位置:首页 > PHP教程 > php类库 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-12 10:18:18 浏览: 评论:0 

这篇文章主要介绍了PHP添加PNG图片背景透明水印操作类定义与用法,涉及php操作图片的显示、保存、压缩、水印添加等相关操作技巧,需要的朋友可以参考下。

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

图片相关操作类

  1. class ImageTool 
  2.   private $imagePath;//图片路径 
  3.   private $outputDir;//输出文件夹 
  4.   public $memoryImg;//内存图像 
  5.   public $path
  6.   public function __construct($imagePath$outputDir = null) 
  7.   { 
  8.     $this->imagePath = $imagePath
  9.     $this->outputDir = $outputDir
  10.     $this->memoryImg = null; 
  11.     $this->path = null; 
  12.   } 
  13.   /** 
  14.    * 显示内存中的图片 
  15.    * @param $image 
  16.    */ 
  17.   public function showImage() 
  18.   { 
  19.     if ($this->memoryImg != null) { 
  20.       $info = getimagesize($this->imagePath); 
  21.       $type = image_type_to_extension($info[2], false); 
  22.       header('Content-type:' . $info['mime']); 
  23.       $funs = "image{$type}"
  24.       $funs($this->memoryImg); 
  25.       imagedestroy($this->memoryImg); 
  26.       $this->memoryImg = null; 
  27.     } 
  28.   } 
  29.   /** 
  30.    * 保存图片 
  31.    * @param $image  图片路径 
  32.    * @return string 
  33.    */ 
  34.   private function saveImage($image
  35.   { 
  36.     $info = getimagesize($this->imagePath); 
  37.     $type = image_type_to_extension($info[2], false); 
  38.     $funs = "image{$type}"
  39.     if (emptyempty($this->outputDir)) { 
  40.       $funs($image, md5($this->imagePath) . '.' . $type); 
  41.       return md5($this->imagePath) . '.' . $type
  42.     } else { 
  43.       $funs($image$this->outputDir . md5($this->imagePath) . '.' . $type); 
  44.       return $this->outputDir . md5($this->imagePath) . '.' . $type
  45.     } 
  46.   } 
  47.   /** 
  48.    * 压缩图片 
  49.    * @param $width 压缩后宽度 
  50.    * @param $height 压缩后高度 
  51.    * @param bool $output 是否输出文件 
  52.    * @return resource 
  53.    */ 
  54.   public function compressImage($width$height$output = false) 
  55.   { 
  56.     $image = null; 
  57.     $info = getimagesize($this->imagePath); 
  58.     $type = image_type_to_extension($info[2], false); 
  59.     $fun = "imagecreatefrom{$type}"
  60.     $image = $fun($this->imagePath); 
  61.     imagesavealpha($image,true);// 
  62.     $thumbnail = imagecreatetruecolor($width$height); 
  63.     imagealphablending($thumbnail,false);//这里很重要,意思是不合并颜色,直接用$img图像颜色替换,包括透明色; 
  64.     imagesavealpha($thumbnail,true);// 
  65.     imagecopyresampled($thumbnail$image, 0, 0, 0, 0, $width$height$info[0], $info[1]); 
  66.     imagedestroy($image); 
  67.     if ($output) { 
  68.       $path = $this->saveImage($thumbnail); 
  69.       $this->path = $path
  70.     } 
  71.     $this->memoryImg = $thumbnail
  72.     return $this
  73.   } 
  74.   /** 
  75.    * 为图像添加文字标记 
  76.    * 
  77.    * @param $content 文本内容 
  78.    * @param $size 字体大小 
  79.    * @param $font 字体样式 
  80.    * @param bool $output 是否输出文件 
  81.    * @return $this 
  82.    */ 
  83.   public function addTextmark($content$size$font$output = false) 
  84.   { 
  85.     $info = getimagesize($this->imagePath); 
  86.     $type = image_type_to_extension($info[2], false); 
  87.     $fun = "imagecreatefrom{$type}"
  88.     $image = $fun($this->imagePath); 
  89.     $color = imagecolorallocatealpha($image, 0, 0, 0, 80); 
  90.     $posX = imagesx($image) - strlen($content) * $size / 2; 
  91.     $posY = imagesy($image) - $size / 1.5; 
  92.     imagettftext($image$size, 0, $posX$posY$color$font$content); 
  93.     if ($output) { 
  94.       $this->saveImage($image); 
  95.     } 
  96.     $this->memoryImg = $image
  97.     return $this
  98.   } 
  99.   /** 
  100.    * 为图片添加水印 
  101.    * 
  102.    * @param $watermark 水印图片路径 
  103.    * @param $alpha 水印透明度(0-100) 
  104.    * @param bool $output 是否输出文件 
  105.    * @return $this 
  106.    */ 
  107.   public function addWatermark($watermark$alpha$output = false) 
  108.   { 
  109.     $image_info = getimagesize($this->imagePath); 
  110.     $image_type = image_type_to_extension($image_info[2], false); 
  111.     $image_fun = "imagecreatefrom{$image_type}"
  112.     $image = $image_fun($this->imagePath); 
  113.     $mark_info = getimagesize($watermark); 
  114.     $mark_type = image_type_to_extension($mark_info[2], false); 
  115.     $mark_fun = "imagecreatefrom{$mark_type}"
  116.     $mark = $mark_fun($watermark); 
  117.     $posX = imagesx($image) - imagesx($mark); 
  118.     $posY = imagesy($image) - imagesy($mark); 
  119.     imagesavealpha($mark, true); 
  120.     imagecopymerge($image$mark$posX$posY, 0, 0, $mark_info[0], $mark_info[1], $alpha); 
  121.     imagesavealpha($mark, true); 
  122.     if ($output) { 
  123.       $path = $this->saveImage($image); 
  124.       $this->path = $path
  125.     } 
  126.     $this->memoryImg = $image
  127.     return $this
  128.   } 
  129.   //用给定角度旋转图像,以jpeg图像格式为例 
  130.   /** 
  131.    * 水印图片旋转 
  132.    * @param $degrees     旋转角度 
  133.    * @param bool $output   是否保存图片 
  134.    * @return $this 
  135.    */ 
  136.   function rotateImage($degrees$output = false) 
  137.   { 
  138.     $info = getimagesize($this->imagePath); 
  139.     $type = image_type_to_extension($info[2], false); 
  140.     $fun = "imagecreatefrom{$type}"
  141.     $image = $fun($this->imagePath); 
  142.     $block = imagecreatetruecolor(170,170);//建立一个画板 
  143.     $bg = imagecolorallocatealpha($block , 0 , 0 , 0 , 127);//拾取一个完全透明的颜色 
  144.     $image = imagerotate($image$degrees$bg ,0); 
  145.     imagesavealpha($image, true); 
  146.     header("Content-type: image/{$type}"); 
  147.     //旋转后的图片保存 
  148.     if ($output) { 
  149.       $path = $this->saveImage($image); 
  150.       $this->path = $path
  151.     } 
  152.     $this->memoryImg = $image
  153.     return $this
  154.   } 
  155.   /** 
  156.   * 添加PNG透明图片 
  157.   * $bigImgPath 目标图片路径 
  158.   * $smallImgPath 水印图片路径 
  159.   * $width 相对于目标图的x轴放置位置 左上角为 0 
  160.   * $height 相对于目标图的y轴放置位置 左上角为0 
  161.   * $bigImgPaths 合成后的图片路径 若路径名与第一张或第二张路径相同 直接覆盖原图 
  162.   */ 
  163.   public function mergerImg($bigImgPath$smallImgPath$width$height$bigImgPaths
  164.   { 
  165.     $image_kuang = imagecreatefromstring(file_get_contents($smallImgPath)); 
  166.     $image_photo = imagecreatefromstring(file_get_contents($bigImgPath)); 
  167.     //创建一个新的,和大图一样大的画布 
  168.     $image_3 = imageCreatetruecolor(imagesx($image_photo), imagesy($image_photo)); 
  169.     //为真彩色画布创建白色背景,再设置为透明 
  170.     $color = imagecolorallocate($image_3, 255, 255, 255); 
  171.     imagefill($image_3, 0, 0, $color); 
  172.     imageColorTransparent($image_3$color); 
  173.     /** 
  174.      * 先copy图片,再copy画框,实现png的透明效果,将图片嵌入到画框里 
  175.      * imagecopymerge与imagecopy的不同: 
  176.      * imagecopymerge 函数可以支持两个图像叠加时,设置叠加层的透明度。imagecopymerge比imagecopy多一个参数,来设置透明度 
  177.      * PHP内部源码里,imagecopymerge在透明度参数为100时,直接调用imagecopy函数。 
  178.      * imagecopy 函数则不支持叠加透明,但拷贝时可以保留png图像的原透明信息,而imagecopymerge却不支持图片的本身的透明拷贝 
  179.      * 即:使用imagecopymerge函数,可以实现打上透明度为30%的淡淡的水印图标,但图片本身的png就会变得像IE6不支持png透明那样,背景不透明了。 
  180.      * 如果使用imagecopy函数,可以保留图片本身的透明信息,但无法实现30%的淡淡水印叠加, 
  181.      */ 
  182.    imagecopyresampled($image_3,$image_photo,0,0,0,0,imagesx($image_photo),imagesy($image_photo),imagesx($image_photo),imagesy($image_photo)); 
  183.     imagecopy($image_3,$image_kuang$width,$height,0,0,imagesx($image_kuang),imagesy($image_kuang)); 
  184.     //存储图片路径 
  185.     imagejpeg($image_3$bigImgPaths); 
  186.     return $bigImgPaths
  187.   } 

控制器调用方法

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

Tags: PHP添加PNG背景

分享到: