maks757/yii2-imagable

There is no license information available for the latest version (1.5.4) of this package.

Image saving extension for yii2

Installs: 56

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Type:yii2-extension

1.5.4 2017-05-30 06:48 UTC

This package is not auto-updated.

Last update: 2024-04-23 21:51:10 UTC


README

#Instalation

php composer.phar install maks757/yii2-imagable

or add

"maks757/yii2-imagable": "*"

to the require section of your composer.json. #Confiugation After extension is installed you need to setup imagable application component:

'imagable' => [
    'class' => 'maks757\imagable\Imagable',
    'imageClass' => 'maks757\imagable\instances\CreateImageImagine',
    'categories' => [
        'origin' => false,
        'category' => [
            'galery' => [
                'origin' => true,
            ],
            'galery/more' => [
                'origin' => false,
            ],
            'avatars' => [
                'size' => [
                    'big' => [
                        'width' => 1000,
                        'height' => 500,
                    ]
                ]
            ]
        ]
    ]
    ...

#Usage

###Create image

$imageName = \Yii::$app->imagable->create('avatars', 'pathToImage');
// Or
$imageName = \Yii::$app->imagable->createMultiply(['avatars', 'galery/more'], 'pathToImage');

###Get Image

$fullPathToImage = \Yii::$app->imagable->get('avatars', 'big', $imageName);

###Delete Image

$isDeleted = \Yii::$app->imagable->delete('avatars', $imageName);

###Data provider

//To action
/** @var Imagable $image */
$imagable = \Yii::$app->imagable;
$imagable->dataProvider = [
    'key' => $data
];
//...

//To class
class ImageClass extends Object implements CreateImageInterface
{
    public $dataProvider;
    
    public function init()
    {
        parent::init(); // TODO: Change the autogenerated stub
        echo $this->dataProvider['key'];
    }
    
    //...
}