我在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);
答案 0 :(得分:0)
您必须启用FileInfo扩展和PHP> = 5.3(最好是5.4)和GD或Imagick扩展以进行图像处理