亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

 更新時(shí)間:2018年01月16日 10:32:23   作者:woider  
這篇文章主要介紹了PHP實(shí)現(xiàn)可添加水印與生成縮略圖的圖片處理工具類,涉及php針對(duì)圖片的顯示、保存、壓縮、水印等相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了PHP實(shí)現(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;
  }
  /**
   * 為圖像添加文字標(biāo)記
   *
   * @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';

然后實(shí)例化ImageTool對(duì)象:

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

一、生成壓縮圖片

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

二、添加文字水印

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

三、添加圖片水印

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

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

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

PS:這里再為大家推薦幾款比較實(shí)用的圖片處理工具供大家參考使用:

在線圖片裁剪/生成工具:
http://tools.jb51.net/aideddesign/imgcut

在線圖片轉(zhuǎn)換BASE64工具:
http://tools.jb51.net/transcoding/img2base64

ICO圖標(biāo)在線生成工具:
http://tools.jb51.net/aideddesign/ico_img

在線Email郵箱圖標(biāo)制作工具:
http://tools.jb51.net/email/emaillogo

在線圖片格式轉(zhuǎn)換(jpg/bmp/gif/png)工具:
http://tools.jb51.net/aideddesign/picext

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP基本語(yǔ)法入門教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • smarty模板引擎從配置文件中獲取數(shù)據(jù)的方法

    smarty模板引擎從配置文件中獲取數(shù)據(jù)的方法

    這篇文章主要介紹了smarty模板引擎從配置文件中獲取數(shù)據(jù)的方法,涉及config_load載入配置文件及相關(guān)的讀取技巧,需要的朋友可以參考下
    2015-01-01
  • PHP中foreach()用法匯總

    PHP中foreach()用法匯總

    這篇文章主要給大家詳細(xì)介紹了PHP中foreach()用法以及相關(guān)的示例,十分的細(xì)致,有需要的小伙伴可以參考下。
    2015-07-07
  • 詳解PHP中的mb_detect_encoding函數(shù)使用方法

    詳解PHP中的mb_detect_encoding函數(shù)使用方法

    這篇文章主要介紹了詳解PHP中的mb_detect_encoding函數(shù)使用方法,包括對(duì)字符串編碼的轉(zhuǎn)換和判斷以及Call to undefined function mb_detect_encoding()錯(cuò)誤的解決,需要的朋友可以參考下
    2015-08-08
  • header中Content-Disposition的作用與使用方法

    header中Content-Disposition的作用與使用方法

    本文章詳細(xì)的介紹了關(guān)于php header中Content-disposition用法詳細(xì),有需要了解header用法的朋友可參考一下
    2012-06-06
  • 詳解PHP解決守護(hù)進(jìn)程Redis假死

    詳解PHP解決守護(hù)進(jìn)程Redis假死

    公司業(yè)務(wù)有一個(gè)常駐后臺(tái)運(yùn)行的守護(hù)進(jìn)程。在這個(gè)守護(hù)進(jìn)程當(dāng)中使用了 Redis List 結(jié)構(gòu)保存業(yè)務(wù)數(shù)據(jù)進(jìn)行隊(duì)列消費(fèi)。結(jié)果運(yùn)行過(guò)程中,有時(shí)候半個(gè)月,有時(shí)候幾個(gè)月就會(huì)突然不再消費(fèi)隊(duì)列里面的數(shù)據(jù)。我們發(fā)現(xiàn)進(jìn)行心中檢測(cè)之后,程序的穩(wěn)定性大大提高。
    2021-06-06
  • php防止sql注入簡(jiǎn)單分析

    php防止sql注入簡(jiǎn)單分析

    這篇文章主要介紹了php防止sql注入的方法,簡(jiǎn)單分析了通過(guò)stripslashes及mysql_real_escape_string函數(shù)進(jìn)行字符轉(zhuǎn)移處理的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2015-03-03
  • PHP中的string類型使用說(shuō)明

    PHP中的string類型使用說(shuō)明

    string就是一串連續(xù)的字符。
    2010-07-07
  • 采集郵箱的php代碼(抓取網(wǎng)頁(yè)中的郵箱地址)

    采集郵箱的php代碼(抓取網(wǎng)頁(yè)中的郵箱地址)

    由于搞了個(gè)群發(fā)郵件的程序,當(dāng)然沒(méi)郵箱不行,所以寫了個(gè)采集郵箱程序
    2012-07-07
  • php下網(wǎng)站防IP攻擊代碼,超級(jí)實(shí)用

    php下網(wǎng)站防IP攻擊代碼,超級(jí)實(shí)用

    現(xiàn)在做外國(guó)網(wǎng)絡(luò),訪問(wèn)量越來(lái)越高了,最近有很多不良IP不停的進(jìn)行攻擊,由于不是自己的主機(jī),所以,只能通過(guò)代碼去阻止它們。
    2010-10-10
  • PHP常用的文件操作函數(shù)經(jīng)典收藏

    PHP常用的文件操作函數(shù)經(jīng)典收藏

    以下是個(gè)人日常使用過(guò)程中總結(jié)的PHP文件操作函數(shù)。當(dāng)然,這只是部分,還有很多,我沒(méi)有列出來(lái),感興趣的朋友可以參考下哈,希望可以幫助到你
    2013-04-04

最新評(píng)論