potime / yii2-cropper-widget
Yii2 Bootstrap Cropper 输入小部件
1.0.4
2019-07-23 09:26 UTC
Requires
This package is auto-updated.
Last update: 2024-09-04 12:16:08 UTC
README
Yii2 图像裁剪输入小部件
Cropper.js v4.0.0 - Bootstrap Cropper(推荐)(已包含)。
功能
- 图像裁剪
- 图像旋转
- 图像翻转
- 图像缩放
- 图像重置
- 坐标
- 图像尺寸信息
- Base64 数据
- 上传
- 删除图片
安装
安装此扩展的首选方法是通过 composer。
运行以下命令之一:
php composer.phar require --prefer-dist potime/yii2-cropper-widget "dev-master"
或者在您的 composer.json
文件的 require 部分添加以下内容:
"potime/yii2-cropper-widget": "dev-master"
使用方法
在您的 main-local 配置文件中添加到 config,并在返回 [] 之前
Yii::setAlias('@uploadPath', realpath(dirname(__FILE__).'/../../uploads/'));
在您的模型文件中添加
public $_image; public function rules() { return [ ['_image', 'safe'], ]; } public function beforeSave($insert) { if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $this->_image, $result)){ $type = $result[2]; $data = base64_decode(str_replace($result[1], '', $this->_image)); $path = Yii::getAlias('@uploadPath') . '/'; if (!is_dir($path)) { FileHelper::createDirectory($path, 0777); } $fileName= Yii::$app->security->generateRandomString() . '.' .$type; if (file_put_contents($path.$fileName, $data)) { // deleting old image if (!$this->isNewRecord && !empty($this->image)) { @unlink($path . $this->portrait); } // set new filename $this->image = $fileName; } } parent::beforeSave($insert); }
在 _form 文件中的简单使用
echo $form->field($model, '_image')->widget(\potime\cropper\Cropper::className(), [ 'label' => 'Select Image', 'imageUrl' => $model->_image, 'cropperOptions' => [ 'width' => 255, 'height' => 150, 'preview' => [ 'width' => 255, 'height' => 150, ], ], ]);
在 _form 文件中的高级使用
echo $form->field($model, '_image')->widget(\potime\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 // "zoom-in" => false hide button 'icons' => [ 'browse' => '<i class="fa fa-image"></i>', 'crop' => '<i class="fa fa-crop"></i>', 'close' => '<i class="fa fa-crop"></i>', 'zoom-in' => '<i class="fa fa-search-plus"></i>', 'zoom-out' => '<i class="fa fa-search-minus"></i>', 'rotate-left' => '<i class="fa fa-rotate-left"></i>', 'rotate-right' => '<i class="fa fa-rotate-right"></i>', 'flip-horizontal' => '<i class="fa fa-arrows-h"></i>', 'flip-vertical' => '<i class="fa fa-arrows-v"></i>', 'move-left' => '<i class="fa fa-arrow-left"></i>', 'move-right' => '<i class="fa fa-arrow-right"></i>', 'move-up' => '<i class="fa fa-arrow-up"></i>', 'move-down' => '<i class="fa fa-arrow-down"></i>', 'reset' => '<i class="fa fa-refresh"></i>', 'delete' => '<i class="fa fa-trash"></i>', ], // you can customize your upload options 'uploadOptions'=>[ 'url'=>'/upload/base64-img', 'response'=>'res.result.url' ] ], 'modalOptions' => [ 'title' => 'Image Crop Editor', // Modal header Title 'tips' => true, // default false 'extendInfo' => true, // default false // optional // defaults following code // you can customize 'labels' => [ // default name 'browse' => 'Browse', 'crop' => 'Crop & Save', 'close' => 'Colse', 'reset' => 'Reset', 'delete' => 'Delete', ], ], // optional // defaults following code // you can customize 'label' => 'Select Image', // optional // default following code // you can customize 'template' => '{button}{preview}', ]);
jsOptions[]
echo $form->field($model, '_image')->widget(\potime\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 }' ], ]);
注意
您可以直接使用 JavaScript 设置裁剪图像
示例
$('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');
});