溫馨提示×

溫馨提示×

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

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

PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類

發(fā)布時間:2021-06-03 11:21:37 來源:億速云 閱讀:93 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

本文實例講述了PHP實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類。分享給大家供大家參考,具體如下:

ImageTool.class.php

<?php
class ImageTool
{
  private $imagePath;//圖片路徑
  private $outputDir;//輸出文件夾
  private $memoryImg;//內(nèi)存圖像
  public function __construct($imagePath, $outputDir = null)
  {
    $this->imagePath = $imagePath;
    $this->outputDir = $outputDir;
    $this->memoryImg = null;
  }
  /**
   * 顯示內(nèi)存中的圖片
   * @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
   */
  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);
    } else {
      $funs($image, $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);
    $thumbnail = imagecreatetruecolor($width, $height);
    imagecopyresampled($thumbnail, $image, 0, 0, 0, 0, $width, $height, $info[0], $info[1]);
    imagedestroy($image);
    if ($output) {
      $this->saveImage($thumbnail);
    }
    $this->memoryImg = $thumbnail;
    return $this;
  }
  /**
   * 為圖像添加文字標記
   *
   * @param $content 文本內(nèi)容
   * @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);
    imagecopymerge($image, $mark, $posX, $posY, 0, 0, $mark_info[0], $mark_info[1], $alpha);
    if ($output) {
      $this->saveImage($image);
    }
    $this->memoryImg = $image;
    return $this;
  }
}

ImageTool使用

首先導(dǎo)入ImageTool工具:

require_once 'ImageTool.class.php';

然后實例化ImageTool對象:

$imageTool = new ImageTool('img/oppman.jpeg', 'out/');//圖片路徑、輸出文件夾

一、生成壓縮圖片

$imageTool->compressImage(350, 250, true);//壓縮寬度、壓縮高度、是否保存
$imageTool->showImage();

PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類

二、添加文字水印

$imageTool->addTextmark('一拳超人', 50, 'res/micro.ttf', true);//內(nèi)容、尺寸、字體、是否保存
$imageTool->showImage();

PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類

三、添加圖片水印

$imageTool->addWatermark('res/logo.jpeg', 100, true);//水印路徑、透明度、是否保存
$imageTool->showImage();

PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類

僅當(dāng)做臨時圖像輸出:

$imageTool->addTextmark('快捷輸出', 50, 'res/micro.ttf')->showImage();

感謝各位的閱讀!關(guān)于“PHP中如何實現(xiàn)可添加水印與生成縮略圖的圖片處理工具類”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI