Class 'Imagine\Gd\Imagine' 在 yii2 中找不到
Class 'Imagine\Gd\Imagine' not found in yii2
我正在处理裁剪图像模块,我需要上传图像的详细信息,所以我正在使用此功能
$image = Image::getImagine()->open($path);
$size = $image->getSize();
使用此功能时出现错误
Class 'Imagine\Gd\Imagine' not found
case self::DRIVER_IMAGICK:
if (class_exists('Imagick', false)) {
return new \Imagine\Imagick\Imagine();
}
break;
case self::DRIVER_GD2:
if (function_exists('gd_info')) {
return new \Imagine\Gd\Imagine();
}
break;
default:
throw new InvalidConfigException("Unknown driver: $driver");
}
}
throw new InvalidConfigException("Your system does not support any of these drivers: " . implode(',', (array) static::$driver));
这个错误来自它的库文件
vendor\yiisoft\yii2\imagine\BaseImage.php
我该如何解决这个问题?任何人都可以给我建议吗?
命名空间也被添加
namespace yii\imagine;
use Yii;
use yii\imagine\Image\Box;
use yii\imagine\Image\Color;
use yii\imagine\Image\ImageInterface;
use yii\imagine\Image\ImagineInterface;
use yii\imagine\Image\ManipulatorInterface;
use yii\imagine\Image\Point;
use yii\base\InvalidConfigException;
use yii\base\InvalidParamException;
use yii\helpers\ArrayHelper;
这是库文件,我从来没有改变过它,我也做了作曲家更新,仍然给我同样的错误
可能是命名空间访问问题
尝试添加
use yii\imagine;
到您的代码
我正在处理裁剪图像模块,我需要上传图像的详细信息,所以我正在使用此功能
$image = Image::getImagine()->open($path);
$size = $image->getSize();
使用此功能时出现错误
Class 'Imagine\Gd\Imagine' not found
case self::DRIVER_IMAGICK:
if (class_exists('Imagick', false)) {
return new \Imagine\Imagick\Imagine();
}
break;
case self::DRIVER_GD2:
if (function_exists('gd_info')) {
return new \Imagine\Gd\Imagine();
}
break;
default:
throw new InvalidConfigException("Unknown driver: $driver");
}
}
throw new InvalidConfigException("Your system does not support any of these drivers: " . implode(',', (array) static::$driver));
这个错误来自它的库文件
vendor\yiisoft\yii2\imagine\BaseImage.php
我该如何解决这个问题?任何人都可以给我建议吗?
命名空间也被添加
namespace yii\imagine;
use Yii;
use yii\imagine\Image\Box;
use yii\imagine\Image\Color;
use yii\imagine\Image\ImageInterface;
use yii\imagine\Image\ImagineInterface;
use yii\imagine\Image\ManipulatorInterface;
use yii\imagine\Image\Point;
use yii\base\InvalidConfigException;
use yii\base\InvalidParamException;
use yii\helpers\ArrayHelper;
这是库文件,我从来没有改变过它,我也做了作曲家更新,仍然给我同样的错误
可能是命名空间访问问题 尝试添加
use yii\imagine;
到您的代码