1. Go to this page and download the library: Download sadovojav/yii2-image-cutter library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sadovojav / yii2-image-cutter example snippets
composer.phar
use sadovojav\cutter\behaviors\CutterBehavior;
public function behaviors()
{
return [
'image' => [
'class' => CutterBehavior::className(),
'attributes' => 'image',
// 'attributes' => ['image1', 'image2'],
'baseDir' => '/uploads/crop',
'basePath' => '@webroot',
],
]
}
public function rules()
{
return [
['image', 'file', 'extensions' => 'jpg, jpeg, png', 'mimeTypes' => 'image/jpeg, image/png'],
];
}