我在项目中使用Image Intervention。
我的应用程序在上传小尺寸图像时运行正常。但是,当我尝试上传大尺寸图片(> 2mb)时,我的应用程序停止运行!
我更改了upload_max_filesize = 100M和post_max_size = 20M并重新启动了服务器。之后,我尝试上传jpeg图片(4.04M)。现在,它没有显示任何错误,但是当我提交表单时,出现空白页,并且所有图像均未上传。你能解释一下吗?
这是我的代码:
$files= Input::file('image');
foreach($files as $file){
$image_resize = Image::make($file->getRealPath());
$image_resize->resize(300, 300);
$image_resize->save(public_path('images/gallery/small/' .$imageName));
}