Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bilginnet/yii2-cropper

Yii2 Image Cropper InputWidget
https://github.com/bilginnet/yii2-cropper

cropper image input-widget yii2-cropper yii2-extension yii2-widgets

Last synced: 4 months ago
JSON representation

Yii2 Image Cropper InputWidget

Awesome Lists containing this project

README

        

# yii2-cropper
Yii2 Image Cropper InputWidget

[![Minimum PHP Version](http://img.shields.io/badge/php-%3E%3D%205.4-8892BF.svg)](https://php.net/)
[![Latest Stable Version](https://poser.pugx.org/bilginnet/yii2-cropper/v/stable)](https://packagist.org/packages/bilginnet/yii2-cropper)
[![Total Downloads](https://poser.pugx.org/bilginnet/yii2-cropper/downloads)](https://packagist.org/packages/bilginnet/yii2-cropper)
[![Latest Unstable Version](https://poser.pugx.org/bilginnet/yii2-cropper/v/unstable)](https://packagist.org/packages/bilginnet/yii2-cropper)
[![License](https://poser.pugx.org/bilginnet/yii2-cropper/license)](https://packagist.org/packages/bilginnet/yii2-cropper)

Cropper.js - Bootstrap Cropper (recommended) (already included).

Features
------------
+ Crop
+ Image Rotate
+ Image Flip
+ Image Zoom
+ Coordinates
+ Image Sizes Info
+ Base64 Data
+ Set Image.Url Directly
+ Set Image.Src With Javascript

Installation
------------

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist bilginnet/yii2-cropper "dev-master"
```

or add

```
"bilginnet/yii2-cropper": "dev-master"
```

to the require section of your `composer.json` file.

Usage
-----

Let's add into config in your main-local config file before return[]
````php
$baseUrl = str_replace('/backend/web', '', (new Request)->getBaseUrl());
$baseUrl = str_replace('/frontend/web', '', $baseUrl);

Yii::setAlias('@uploadUrl', $baseUrl.'/uploads/');
Yii::setAlias('@uploadPath', realpath(dirname(__FILE__).'/../../uploads/'));
// image file will upload in //root/uploads folder

return [
....
]
````

Let's add in your model file
````php
public $_image

public function rules()
{
return [
['_image', 'safe'],
];
}

public function beforeSave($insert)
{
if (is_string($this->_image) && strstr($this->_image, 'data:image')) {

// creating image file as png
$data = $this->_image;
$data = base64_decode(preg_replace('#^data:image/\w+;base64,#i', '', $data));
$fileName = time() . '-' . rand(100000, 999999) . '.png';
file_put_contents(Yii::getAlias('@uploadPath') . '/' . $fileName, $data);

// deleting old image
// $this->image is real attribute for filename in table
// customize your code for your attribute
if (!$this->isNewRecord && !empty($this->image)) {
unlink(Yii::getAlias('@uploadPath/'.$this->image));
}

// set new filename
$this->image = $fileName;
}

return parent::beforeSave($insert);
}
````

Advanced usage in _form file
-----
````php
echo $form->field($model, '_image')->widget(\bilginnet\cropper\Cropper::className(), [
/*
* elements of this widget
*
* buttonId = #cropper-select-button-$uniqueId
* previewId = #cropper-result-$uniqueId
* modalId = #cropper-modal-$uniqueId
* imageId = #cropper-image-$uniqueId
* inputChangeUrlId = #cropper-url-change-input-$uniqueId
* closeButtonId = #close-button-$uniqueId
* cropButtonId = #crop-button-$uniqueId
* browseInputId = #cropper-input-$uniqueId // fileinput in modal
*/
'uniqueId' => 'image_cropper', // will create automaticaly if not set

// you can set image url directly
// you will see this image in the crop area if is set
// default null
'imageUrl' => Yii::getAlias('@web/image.jpg'),

'cropperOptions' => [
'width' => 100, // must be specified
'height' => 100, // must be specified

// optional
// url must be set in update action
'preview' => [
'url' => '', // (!empty($model->image)) ? Yii::getAlias('@uploadUrl/'.$model->image) : null
'width' => 100, // must be specified // you can set as string '100%'
'height' => 100, // must be specified // you can set as string '100px'
],

// optional // default following code
// you can customize
'buttonCssClass' => 'btn btn-primary',

// optional // defaults following code
// you can customize
'icons' => [
'browse' => '',
'crop' => '',
'close' => '',
'zoom-in' => '',
'zoom-out' => '',
'rotate-left' => '',
'rotate-right' => '',
'flip-horizontal' => '',
'flip-vertical' => '',
'move-left' => '',
'move-right' => '',
'move-up' => '',
'move-down' => '',
]
],

// optional // defaults following code
// you can customize
'label' => '$model->attribute->label',

// optional // default following code
// you can customize
'template' => '{button}{preview}',

]);
````

Simple usage in _form file
-----
````php
echo $form->field($model, '_image')->widget(\bilginnet\cropper\Cropper::className(), [
'cropperOptions' => [
'width' => 100, // must be specified
'height' => 100, // must be specified
]
]);
````

jsOptions[]
-----
````php
echo $form->field($model, '_image')->widget(\bilginnet\cropper\Cropper::className(), [
'cropperOptions' => [
'width' => 100, // must be specified
'height' => 100, // must be specified
],
'jsOptions' => [
'pos' => View::POS_END, // default is POS_END if not specified
'onClick' => 'function(event){
// when click crop or close button
// do something
}'
],
]);
````

Notes
-----
Don't forget to add this line into root in .htaccess file
````
RewriteRule ^uploads/(.*)$ uploads/$1 [L]
````

You can set crop image directly with javascript

Sample:
````
$('button').click(function() {
// #cropper-modal-$unique will show automatically when click the button

// you must set uniqueId on widget
$('#cropper-url-change-input-' + uniqueId).val('image.jpeg').trigger('change');
});
````