如果1mb up,Laravel上传图像无法读取文件

时间:2017-01-19 04:51:26

标签: php laravel-5.3 intervention

我上传图片时遇到问题,如果我上传到1mb以下就可以找到,但是如果我上传了1.6mb的图像文件,则会出错。

  NotReadableException in Decoder.php line 46:
  Unable to read image from file 

我也改变了php.ini post_max_size=3000M upload_max_filesize=2000M仍然没有运气。

这是我的代码

        $filename = $request->profile->getClientOriginalName();
        $image = $request->profile->getRealPath();
        $path =public_path() . '/profile/';
        $fimage = Image::make($image)->resize(48, 48);
        $fimage->save($path . $filename);

提前谢谢。

0 个答案:

没有答案