yii2-crop-image-upload
yii2-crop-image-upload copied to clipboard
Yii2 extension for cropped image upload
UploadBehavior.php -> namespace mohorev\file; CropImageUploadBehavior.php -> use mongosoft\file\UploadBehavior; Solution CropImageUploadBehavior should change mongosoft to mohorev. Please fix this error Thank you.
I m using this extension in frontend. the code is working for only uploading the images, but the cropping is not working. the directory for images is `frontend/web/profile_images` this is...
There has to be a way to show loader while the image is being displayed on screen. Can you add a callback method?
Imagine\Exception\InvalidArgumentException Length of either side cannot be 0 or negative, current size is 0x0 if ($height < 1 || $width < 1) { throw new InvalidArgumentException(sprintf( 'Length of either side...
I have used the extension and want to try it with ajax but it is not working and only passing the photo_crop variable value and not the file input.. How...
Hi, When I tried to save my model without uploading a image, it gave me error "File doesn't exist". How I can solve this issue? Thank you
help me
When I use widget I face a following issue: - It shows on view(interface) is ok - When I submit data, ‘photo’ field return NULL - My action to submit...
i have not save images . I want save images for user : View : Save User model : public $photo; public $photo_crop; public $photo_cropped; public function rules() { return...
I must modify afterSave function in CropImageUploadBehavior ``` php public function afterSave() { parent::afterSave(); if (in_array($this->owner->scenario, $this->scenarios)) { $image = null; foreach ($this->getConfigurations() as $crop) { if ($crop['_changed']) { if...
Hi, Your extensions is great, I'm using it one of my project. I want to generate thumbnails too! How is it possible? Thank you