rol*_*JKS 6 php image laravel intervention laravel-5.1
我尝试使用laravel保存来自POST请求的图像.但它给了我以下错误.
Container.php第741行中的ReflectionException:类图像不存在
我做了以下事情:在php.ini文件中启用fileinfo扩展,composer dumpautoload
但没有任何工作我在这里遵循指南行
我正在使用laravel 5.1
我的代码如下
public function saveImage(){
Image::make(Input::file('files')->getRealPath())
->resize(870, null, true, false)
->save('foo.jpg');
}
Run Code Online (Sandbox Code Playgroud)
小智 18
你有没有
use Intervention\Image\ImageManagerStatic as Image;
Run Code Online (Sandbox Code Playgroud)
在文档的顶部?