• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP实现可添加水印与生成缩略图的图片处理工具类_php技巧

php 搞代码 4年前 (2022-01-22) 31次浏览 已收录 0个评论

这篇文章主要介绍了PHP实现可添加水印与生成缩略图的图片处理工具类,涉及php针对图片的显示、保存、压缩、水印等相关操作技巧,需要的朋友可以参考下

本文实例讲述了PHP实现可添加水印与生成缩略图的图片处理工具类。分享给大家供大家参考,具体如下:

Image本@文来源[email protected]搞@^&代*@码网(搞代gaodaima码Tool.class.php

<?phpclass ImageTool{  private $imagePath;//图片路径  private $outputDir;//输出文件夹  private $memoryImg;//内存图像  public function __construct($imagePath, $outputDir = null)  {    $this->imagePath = $imagePath;    $this->outputDir = $outputDir;    $this->memoryImg = 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   */  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 文本内容   * @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;  }}

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP实现可添加水印与生成缩略图的图片处理工具类_php技巧
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址