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

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

Imagetool.class.PHP

rush:PHP;"> 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,$width,$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,80); $posX = imagesx($image) - strlen($content) * $size / 2; $posY = imagesy($image) - $size / 1.5; imagettftext($image,$posX,$posY,$color,$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,$mark_info[0],$mark_info[1],$alpha); if ($output) { $this->saveImage($image); } $this->memoryImg = $image; return $this; } }

Imagetool使用

首先导入Imagetool工具:

rush:PHP;"> require_once 'Imagetool.class.PHP';

然后实例化Imagetool对象:

rush:PHP;"> $imagetool = new Imagetool('img/oppman.jpeg','out/');//图片路径、输出文件

一、生成压缩图片

compressImage(350,250,true);//压缩宽度、压缩高度、是否保存 $imagetool->showImage();

二、添加文字水印

addTextmark('一拳超人',50,'res/micro.ttf',true);//内容、尺寸、字体、是否保存 $imagetool->showImage();

三、添加图片水印

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

仅当做临时图像输出

addTextmark('快捷输出','res/micro.ttf')->showImage();

PS:这里再为大家推荐几款比较实用的图片处理工具供大家参考使用:

在线图片裁剪/生成工具:

在线图片转换BASE64工具:

ICO图标在线生成工具:

在线Email邮箱图标制作工具:

在线图片格式转换(jpg/bmp/gif/png)工具:

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》及《

希望本文所述对大家PHP程序设计有所帮助。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


服务器优化必备:深入了解PHP8底层开发原理
Golang的网络编程:如何快速构建高性能的网络应用?
Golang和其他编程语言的对比:为什么它的开发效率更高?
PHP8底层开发原理揭秘:如何利用新特性创建出色的Web应用
将字符重新排列以形成回文(如果可能)在C++中
掌握PHP8底层开发原理和新特性:创建高效可扩展的应用程序
服务器性能优化必学:掌握PHP8底层开发原理
PHP8新特性和底层开发原理详解:优化应用性能的终极指南
将 C/C++ 代码转换为汇编语言
深入研究PHP8底层开发原理:创建高效可扩展的应用程序
C++程序查找法向量和迹
PHP8底层开发原理实战指南:提升服务器效能
重排数组,使得当 i 为偶数时,arr[i] >= arr[j],当 i 为奇数时,arr[i] <= arr[j],其中 j < i,使用 C++ 语言实现
Golang的垃圾回收:为什么它可以减少开发人员的负担?
C++程序:将一个数组的所有元素复制到另一个数组中
Golang:构建智能系统的基石
为什么AI开发者应该关注Golang?
在C和C++中,逗号(comma)的用法是用来分隔表达式或语句
PHP8底层开发原理解析及新特性应用实例
利用PHP8底层开发原理解析新特性:如何构建出色的Web应用