yii2-gallery-manager
                                
                                 yii2-gallery-manager copied to clipboard
                                
                                    yii2-gallery-manager copied to clipboard
                            
                            
                            
                        Rotate images
How I can rotate uploaded images?
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.