本文实例讲述了thinkPHP框架实现图像裁剪、缩放、加水印的方法。分享给大家供大家参考,具体如下:
ThinkPHP 图片处理函数,需要文字水印字体,可在windows下 控制面板 > 大图标(右上角) > 字体 找到需要的字体
open($path);
$imgWidth = $image->width();
$imgHeight = $image->height();
// 限制尺寸
if($width and !$height){
$maxSize = $width;
// 宽度或高度大于规定尺寸时
if($imgWidth > $maxSize or $imgHeight > $maxSize){
$size = image_min_width($imgWidth,$imgHeight,$maxSize);
$image->thumb($size['width'],$size['height']);
$do = true;
$dowater = true;
}
// 裁剪固定尺寸
}else if($width and $height){
$size = image_min_width($imgWidth,$width);
$image->thumb($size['width'],$size['height'])->crop($width,$height);
$do = true;
$dowater = true;
}
if($dowater and $water and $word){
$image->text($word,'./Public/images/arial.ttf',20,'#dddddd',\Think\Image::IMAGE_WATER_SOUTHEAST,-10);
}
// 未操作则不保存
if($do){
$image->save($path);
}
}
@H_502_5@
PS:这里再为大家推荐几款比较实用的图片处理工具供大家参考使用:
在线图片转换BASE64工具:
原文链接:https://www.f2er.com/thinkphp/17776.html