中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在PHP中添加PNG圖片背景透明水印

發布時間:2021-05-11 16:15:32 來源:億速云 閱讀:278 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在PHP中添加PNG圖片背景透明水印,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

php有什么用

php是一個嵌套的縮寫名稱,是英文超級文本預處理語言,它的語法混合了C、Java、Perl以及php自創新的語法,主要用來做網站開發,許多小型網站都用php開發,因為php是開源的,從而使得php經久不衰。

圖片相關操作類

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中添加PNG圖片背景透明水印,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

高碑店市| 邵武市| 久治县| 鄂伦春自治旗| 湛江市| 肃北| 乌什县| 郧西县| 鄢陵县| 泰兴市| 鄂温| 新郑市| 扬州市| 盐边县| 阳城县| 寿宁县| 盐亭县| 丽江市| 密云县| 大兴区| 赤峰市| 扶沟县| 纳雍县| 云南省| 华坪县| 孝感市| 德安县| 木兰县| 山东| 莫力| 镇平县| 宜兴市| 盘锦市| 涿州市| 镇坪县| 徐闻县| 蛟河市| 兰州市| 同德县| 通辽市| 饶平县|