我已经安装了 Laravel 5.2 和 Intervention,现在在项目的 composer.json 文件中。
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"intervention/image": "^2.3"
},
阅读教程后,它提到了一个 Image.php 文件,一旦您安装了 Intervention,该文件应该位于项目内的 config 文件夹中。我相信我已经正确安装了干预,但是当我尝试使用干预功能时它不起作用。
当我尝试使用这行代码时,出现此错误
$resizedImg = Image::make($path)->resize(200,200);
C:\xampp\htdocs\socialNet\vendor\laravel\framework\src\Illuminate\Container\Container.php line 738:
类图像不存在
在我使用这个函数的文件中,我包含了这个 Use 语句
use Intervention\Image\Facades\Image as Image;