我正在使用[Intervention][1]
来调整文件大小。我发现它没有调整像this one
我正在使用的代码是:
if (Input::hasFile('image'))
{
$file = Input::file('image');
$r = $file->move('uploads', $file->getClientOriginalName());
Image::make('/mountain.jpg')->resize(200,200)->save('uploads/k2.jpg');
//print_r($image);
exit;
}
代码适用于较小的文件。文件大小为2.x MB,我的PHP限制为32MB。
更新:Laravel Log说:
' with message 'Allowed memory size of 33554432 bytes exhausted (tried to allocate 3008 bytes`
答案 0 :(得分:0)
通过找出您的错误日志消息; Allowed memory size of 33554432 bytes exhausted (tried to allocate 3008 bytes
,您的应用内存不足。
通过更改php.ini文件中memory_limit
的值来增加此值。
请务必重新启动您的网络服务器。