ReflectionException in Container.php Class image does not exist for intervention
ReflectionException in Container.php Class image does not exist for intervention
我尝试使用 laravel 保存来自 POST 请求的图像。但它给了我以下错误。
ReflectionException in Container.php line 741: Class image does not exist
我做了以下事情:
在 php.ini 文件中启用文件信息扩展
和 composer dumpautoload
但没有任何效果我遵循了指南 here
我正在使用 laravel 5.1
我的代码如下
public function saveImage(){
Image::make(Input::file('files')->getRealPath())
->resize(870, null, true, false)
->save('foo.jpg');
}
您是否在文档顶部添加了 class?
use Intervention\Image\ImageManagerStatic as Image;
我尝试使用 laravel 保存来自 POST 请求的图像。但它给了我以下错误。
ReflectionException in Container.php line 741: Class image does not exist
我做了以下事情:
在 php.ini 文件中启用文件信息扩展
和 composer dumpautoload
但没有任何效果我遵循了指南 here
我正在使用 laravel 5.1
我的代码如下
public function saveImage(){
Image::make(Input::file('files')->getRealPath())
->resize(870, null, true, false)
->save('foo.jpg');
}
您是否在文档顶部添加了 class?
use Intervention\Image\ImageManagerStatic as Image;