whagency / yii2-imagecache
Yii2 image cache
Installs: 567
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4
- yiisoft/yii2: *
- yiisoft/yii2-imagine: *
This package is auto-updated.
Last update: 2024-11-07 19:59:21 UTC
README
Yii2 extension for generating images based on Imagick
Capabilities
- FIT - resize image WITH proportion and based on BOTH sides
- Scale - resize image WITH proportion and based on ONE sides
- Crop - crop image WITH proportion
- Generate black-and-white image
- Add watermark to the image
- Add background color for FITed images
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require "whagency/yii2-imagecache" "*"
or add to your composer.json file
"require": { "whagency/yii2-imagecache": "*" },
Config
'components' => [ ... 'imageCache' => [ 'class' => 'webheads\imagecache\imageCache', 'cachePath' => '@app/web/files/cache', 'cacheUrl' => '@web/files/cache', ], ]
Usage Example PHP 8.0
Yii::$app->imageCache->img('/files/image.jpg', imagick_options: ['fit' => 300, 'bg' => '#ff0000', 'watermark' => '@app/web/files/images/wmk.png']) // Result: image 300 x 300 without cropping, with watermark and background color.
Usage Example
echo Yii::$app->imageCache->imgSrc('@app/web/files/image.jpg', '', ['fit' => 300, 'bw' => true, 'watermark' => '@app/web/files/watermark-image.png']); // Result: path to black-and-white image 300 x 300 without cropping, with watermark. echo Yii::$app->imageCache->img('@app/web/files/image.jpg', '400x', ['class'=>'my-class', 'alt' => 'Image']); // Result: scaled image with width = 400, alt and class. echo Yii::$app->imageCache->img('@app/web/files/image.jpg', '100x150', ['alt' => 'Image'], ['bw' => true]); // Result: resized and cropped black-and-white image 100 x 150 with alt.