Image Component for Yii2
This extension is base on yii-easyImage, used for Yii2.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist cliff363825/yii2-image "*"
or add
"cliff363825/yii2-image": "*"
to the require section of your composer.json
file.
Once the extension is installed, simply modify your application configuration as follows:
return [
...
'components' => [
....
'easyImage' => [
'class' => 'cliff363825\image\EasyImage',
'driver' => 'GD',
'quality' => 100,
'cachePath' => '/easyimage/',
'cacheTime' => 2592000,
'retinaSupport' => false,
'basePath' => '@webroot',
'baseUrl' => '@web',
]
],
];
$file
required - Image file path$driver
- Driver: GD
, Imagick
You can create a thumbnail directly in the View
:
// Create and autocache
Yii::$app->easyImage->thumbOf('/path/to/image.jpg', ['rotate' => 90]);
// or
Yii::$app->easyImage->thumbOf('image.jpg', ['rotate' => 90], ['class' => 'image']);
// or
Yii::$app->easyImage->thumbOf('image.png', [
'resize' => ['width' => 100, 'height' => 100],
'rotate' => ['degrees' => 90],
'sharpen' => 50,
'background' => '#ffffff',
'type' => 'jpg',
'quality' => 60,
]);
Note. This method return Html::img()
$file
required - Image file path$params
- Image manipulation methods. See Methods$htmlOptions
- options for Html::img()For full details on usage, see the documentation.
No stable releases.
Comments