Laravel 4无法上传图片

时间:2014-10-27 10:10:44

标签: laravel

我在wamp服务器上使用Laravel 4.2。

错误:

  

干预\ Image \ Exception \ NotWritableException无法写入   图像数据到路径(C:\ wamp \ www \ laravel .....)

我的剧本:

$image = Input::file('image');
$filename = date('Y-m-d-H:i:s').".".$image->getClientOriginalExtension();
$path = public_path('img/products/' . $filename);
Image::make($image->getRealPath())->resize(468, 249)->save($path);

1 个答案:

答案 0 :(得分:0)

您必须启用FileInfo扩展和PHP> = 5.3(最好是5.4)和GD或Imagick扩展以进行图像处理