yii2-gallery-manager icon indicating copy to clipboard operation
yii2-gallery-manager copied to clipboard

Rotate images

Open onneze opened this issue 7 years ago • 1 comments

How I can rotate uploaded images?

onneze avatar Jan 23 '18 17:01 onneze

I think this is not implemented. Also we can add some "sizes" with rotated images

https://imagine.readthedocs.io/en/master/usage/introduction.html compare with config:

             'versions' => [
                 'small' => function ($img) {
                     /** @var \Imagine\Image\ImageInterface $img */
                     return $img
                         ->copy()
                         ->thumbnail(new \Imagine\Image\Box(200, 200));
                 },

Or add your own actions for this.

bscheshirwork avatar Nov 19 '18 12:11 bscheshirwork