artkost / yii2-image-style-behavior
Yii 2 image styles generation behavior
Installs: 45
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-imagine: ~2.0.0
This package is auto-updated.
Last update: 2024-10-29 03:48:20 UTC
README
Create sets of styles for your images
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require artkost/yii2-image-style-behavior
or add
"artkost/yii2-image-style-behavior": "*"
to the require
section of your composer.json
file.
Configuring
Configure model as follows
use artkost\imagestyle\ImageStyleBehavior; class ImageFile extends \yii\db\ActiveRecord { public function behaviors() { return [ 'styles' => [ 'class' => ImageStyleBehavior::className(), 'path' => '@webroot/uploads/styles', 'url' => '@web/uploads/styles', 'attribute' => 'uri', 'styles' => [ 'big' => [$this, 'styleBig'], //can be any valid callable 'small' => [$this, 'styleSmall'] ] ] ]; } /** * @return \Imagine\Image\ManipulatorInterface */ public function styleBig() { return Image::thumbnail($this->filePath, 814, 458)->save($this->style('big')->path); } }
Usage
$file = ImageFile::findOne($id); echo $file->style('big')->url;