2017 © Pedro Peláez
 

yii2-extension yii2-easyimage

Yii 2 Framework extension for easy creating and caching thumbnails in real time.

image

yiicod/yii2-easyimage

Yii 2 Framework extension for easy creating and caching thumbnails in real time.

  • Sunday, February 18, 2018
  • by lexxorlov
  • Repository
  • 1 Watchers
  • 4 Stars
  • 480 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 40 % Grown

The README.md

Yii EasyImage extension

Latest Stable Version Total Downloads Scrutinizer Code QualityCode Climate, (*1)

You don't need to create many types of thumbnails for images in your project. You can create a thumbnail directly in the View. Thumbnail will automatically cached. It's easy!, (*2)

Features: - Easy to use - Support Imagick, Gmagick and GD2 - Automatically images caching - Cache sorting to subdirectories, (*3)

Installing and configuring

Add the following to your config file components section:, (*4)

'easyimage' => [
    'class' => 'yiicod\easyimage\EasyImage',
    'webrootAlias' => '@frontend/web',
    'cachePath' => '/uploads/easyimage/',
    'imageOptions' => [
        'quality' => 100
    ],
],

Parameters

  • string webrootAlias webroot folder path
  • string cachePath cache directory path in webroot folder
  • array imageOptions array with default output image options which will used by Imagine to save image

Usage

Yii::$app->easyimage->getUrl($file, $params, $absolute); //Get cached image url
Yii::$app->easyimage->getPath($file, $params); //Get cached image path

Note: you can get access to the component using static method EasyImage::getInstance()

Parameters

  • string $file required - Image file path
  • array $params image tools params Default: []
  • mixed $absolute get absolute (true) url or not (false). Will use in Url::to() helper method

Available tools and parameters

'crop' => [
    'width' => 200, //Required
    'height' => 200, //Required
    'offset_x' => 100,
    'offset_y' => 100,
],
'flip' => [
    'axis' => 'vertical', //Required available 'vertical' or 'horizontal'
],
'resize' => [
    'width' => 200, //Required
    'height' => 200, //Required
],
'scale' => [
    'width' => 200, //Required
    'height' => 200, //Required
],
'rotate' => [
    'angle' => 45 //Required
],
'thumbnail' => [
    'width' => 100, //Required one of dimensions
    'height' => 100, //Required one of dimensions
],
'watermark' => [
    'image' => $file, //Required
    'offset_x' => 100,
    'offset_y' => 100,
],
'background' => [
    'color' => '#000', //Required
    'alpha' => 0 //Background color's alpha
],

Tools

You can add additional tools in config:, (*5)

'easyimage' => [
    'class' => 'yiicod\easyimage\EasyImage',
    'webrootAlias' => '@frontend/web',
    'cachePath' => '/uploads/easyimage/',
    'tools' => [
        'crop' => Crop::class,
    ],
],
  • 'crop' - tool name which will use in getUrl() or getPath() params
  • Crop::class - tool class name which must implement yiicod\easyimage\base\ToolInterface

The Versions

18/02 2018

dev-master

9999999-dev https://github.com/yiicod/yii2-easyimage

Yii 2 Framework extension for easy creating and caching thumbnails in real time.

  Sources   Download

MIT New BSD License

The Requires

 

The Development Requires

cache extension yii realtime image thumbnail

18/02 2018

1.0.0

1.0.0.0 https://github.com/yiicod/yii2-easyimage

Yii 2 Framework extension for easy creating and caching thumbnails in real time.

  Sources   Download

MIT

The Requires

 

The Development Requires

cache extension yii realtime image thumbnail