thinkphp 如何生产指定图片尺寸大小的? 20
我想生成一张图片,比如图片尺寸:width:600px;height:400px,现在用的代码无法实现publicfunction_upload(){import('@....
我想生成一张图片,比如图片尺寸:width:600px;height:400px,现在用的代码无法实现
public function _upload() {
import('@.ORG.UploadFile');
//导入上传类
$upload = new UploadFile();
//设置上传文件大小
$upload->maxSize = 3292200;
//设置上传文件类型
$upload->allowExts = explode(',', 'jpg,gif,png,jpeg');
//设置附件上传目录
$upload->savePath = './Uploads/';
//设置需要生成缩略图,仅对图像文件有效
$upload->thumb = true;
// 设置引用图片类库包路径
$upload->imageClassPath = '@.ORG.Image';
//设置需要生成缩略图的文件后缀
$upload->thumbPrefix = 'm'; //生产2张缩略图
//设置缩略图最大宽度
$upload->thumbMaxWidth = '600';
//设置缩略图最大高度
$upload->thumbMaxHeight = '400';
//设置上传文件规则
$upload->saveRule = 'uniqid';
//删除原图
$upload->thumbRemoveOrigin = true; 展开
public function _upload() {
import('@.ORG.UploadFile');
//导入上传类
$upload = new UploadFile();
//设置上传文件大小
$upload->maxSize = 3292200;
//设置上传文件类型
$upload->allowExts = explode(',', 'jpg,gif,png,jpeg');
//设置附件上传目录
$upload->savePath = './Uploads/';
//设置需要生成缩略图,仅对图像文件有效
$upload->thumb = true;
// 设置引用图片类库包路径
$upload->imageClassPath = '@.ORG.Image';
//设置需要生成缩略图的文件后缀
$upload->thumbPrefix = 'm'; //生产2张缩略图
//设置缩略图最大宽度
$upload->thumbMaxWidth = '600';
//设置缩略图最大高度
$upload->thumbMaxHeight = '400';
//设置上传文件规则
$upload->saveRule = 'uniqid';
//删除原图
$upload->thumbRemoveOrigin = true; 展开
展开全部
这是我项目中的一个thinkphp方法,如果不覆盖原图那修改save中的文件名为新名称就可以。
/* 生成规格图片
* param:file 操作的图片,完整路径+文件名
* param:size 缩略图最大尺寸
*/
function make_thumb($file,$width,$height){
$image = new \Think\Image();
$image->open($file);
$image->thumb($width, $height)->save($file);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询