Laravel图像干预图像

时间:2014-12-21 11:29:02

标签: php laravel web image-manipulation image-upload

所以我收到了这个错误

Call to undefined function Intervention\Image\finfo_buffer() 

在我的laravel上使用干预图像时出现此错误,所以这是我的代码

    if(Input::hasFile('imgchick'))
    {
    $img = Image::make('images/chickens/1419125359-chicken.jpg'); //got the error on this part
    $file = ImageInput::file('imgchick');
    $name = time().'-'.'chicken.jpg';
    $file = $file->move(public_path() . '/images/chickens', $name);
    $farm->img_loc=$name;

我已经更新了我的php.ini并取消注释了我的一些研究所需的一些代码,但它仍然无效。请帮忙

1 个答案:

答案 0 :(得分:0)

您必须启用the finfo_buffer extension

请点击此处了解更多详情:

https://github.com/Intervention/image/issues/131