1:php终端
安装扩展
使用Composer
安装ThinkPHP5
的图像处理类库:
composer require topthink/think-image
2:控制器代码:
public function save(Request $request) { //接受前端全部参数 $data = $request->param(); // 接受文件上传 $file = $request->file('goods_logo'); if ($file) { $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads'); if ($info) { // 成功上传后 获取上传信息 //缩略图 // $filename = echo $info->getSaveName()在源代码前面追加 DS .'uploads'.DS; $filePath = DS .'uploads'.DS.$info->getSaveName(); // 打开缩略图 $image=Image::open('.'.$filePath); // 设置缩略图 $image->thumb(150, 150)->save('.'.$filePath); $data['goods_logo'] = $filePath; } else { // 上传失败获取错误信息 $this->error($file->getError(), 'http://www.day.com/exam/exam/create');; } } // 添加入库: $res= Brand::brandId($data); if (!$res){ $this->error('添加失败','http://www.day.com/exam/exam/create'); } $this->success('添加成功','http://www.day.com/exam/exam/index'); }