我上传图片时遇到问题,如果我上传到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);
提前谢谢。