spayn / thumbnail_generator_yii2_wrapper
There is no license information available for the latest version (0.1.1) of this package.
Wrapper for spayn/thumbnail_generator
0.1.1
2019-02-28 12:51 UTC
Requires
- php: ~7.0
- spayn/thumbnail_generator: ~0.1
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2025-03-29 00:44:27 UTC
README
Usage:
// Configure 'thumbnail' => [ 'class' => 'spayn\ImageHelpers\Yii2\ThumbnailGeneratorWrapper', 'save_path' => '@backend/web/thumbs', 'url' => '/backend/thumbs', 'thumbs' => [ 'common\models\Post' => [ 'picture_property' => 'image', 'resolutions' => [ 'small' => '75x75', 'medium' => '730x410' ] ], 'common\models\User' => [ 'picture_property' => 'image', 'resolutions' => [ 'small' => '80x80' ] ] ] ] // Generate Yii::$app->thumbnail->generate($model, $path_to_imagefile); // Get url Yii::$app->thumbnail->getFileUrl($model, 'medium');