2017 © Pedro Peláez
 

yii2-extension yii2-easy-thumbnail-image-helper

Yii2 helper for creating and caching thumbnails on real time

image

himiklab/yii2-easy-thumbnail-image-helper

Yii2 helper for creating and caching thumbnails on real time

  • PHP
  • 7 Dependents
  • 0 Suggesters
  • 13 Forks
  • 2 Open issues
  • 6 Versions
  • 11 % Grown

The README.md

Easy Thumbnail Image Helper for Yii2

Packagist Packagist license, (*1)

Yii2 helper for creating and caching thumbnails on real time., (*2)

Installation

The preferred way to install this extension is through composer., (*3)

  • Either run
php composer.phar require "himiklab/yii2-easy-thumbnail-image-helper" "*"

or add, (*4)

"himiklab/yii2-easy-thumbnail-image-helper" : "*"

to the require section of your application's composer.json file., (*5)

  • Add a new component in components section of your application's configuration file, for example:
'components' => [
    'thumbnail' => [
        'class' => 'himiklab\thumbnail\EasyThumbnail',
        'cacheAlias' => 'assets/gallery_thumbnails',
    ],
],

and in bootstrap section, for example:, (*6)

'bootstrap' => ['log', 'thumbnail'],

It is necessary if you want to set global helper's settings for the application., (*7)

Usage

For example:, (*8)

use himiklab\thumbnail\EasyThumbnailImage;

echo EasyThumbnailImage::thumbnailImg(
    $model->pictureFile,
    50,
    50,
    EasyThumbnailImage::THUMBNAIL_OUTBOUND,
    ['alt' => $model->pictureName]
);

or, (*9)

use himiklab\thumbnail\EasyThumbnailImage;

echo EasyThumbnailImage::thumbnailImg(
    'http://...',
    50,
    50,
    EasyThumbnailImage::THUMBNAIL_OUTBOUND,
);

For other functions please see the source code., (*10)

If you want to handle errors that appear while converting to thumbnail by yourself, please make your own class and inherit it from EasyThumbnailImage. In your class replace only protected method errorHandler. For example, (*11)

class ThumbHelper extends \himiklab\thumbnail\EasyThumbnailImage
{

    protected static function errorHandler($error, $filename)
    {
        if ($error instanceof \himiklab\thumbnail\FileNotFoundException) {
            return \yii\helpers\Html::img('@web/images/notfound.png');
        } else {
            $filename = basename($filename);
            return \yii\helpers\Html::a($filename,"@web/files/$filename");
        }
    }
} 

The Versions

03/07 2018

dev-master

9999999-dev

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail

15/03 2018

1.1.2

1.1.2.0

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail

03/11 2017

1.1.1

1.1.1.0

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail

02/11 2017

1.1.0

1.1.0.0

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail

10/01 2017

1.0.3

1.0.3.0

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail

12/11 2015

1.0.2

1.0.2.0

Yii2 helper for creating and caching thumbnails on real time

  Sources   Download

MIT

The Requires

 

yii2 helper image thumbnail