Container.php中的ReflectionException类图像不存在以进行干预

时间:2016-02-06 13:48:12

标签: php image laravel laravel-5.1 intervention

我尝试使用laravel保存来自POST请求的图像。但它给了我以下错误。

  
    

Container.php第741行中的ReflectionException:类图像不存在

  

我做了以下事情: 在php.ini文件中启用fileinfo扩展 和public function saveImage(){ Image::make(Input::file('files')->getRealPath()) ->resize(870, null, true, false) ->save('foo.jpg'); } 但没有什么是工作我遵循指南here 我正在使用laravel 5.1

我的代码如下所示

policy.AddAuthenticationSchemes

1 个答案:

答案 0 :(得分:17)

你有没有


    use Intervention\Image\ImageManagerStatic as Image;

在文档的顶部?