I am using a Symfony 2 liipImagineBundle and all i want to do is to rotate image 180 deg and then flip it. I just want to have a mirror view of my image. How can i do it with my imagine bundle or if it not possible ho to do it in Symfony 2?
Asked
Active
Viewed 975 times
1 Answers
2
Create custom filter: https://github.com/liip/LiipImagineBundle/blob/master/Resources/doc/filters.md#load-your-custom-filters
Use PHP function imagerotate
http://php.net/manual/en/function.imagerotate.php

Paweł Kolanowski
- 342
- 5
- 18
-
Can you show your implementation of image rotate filter, please? – Victor Bocharsky Apr 07 '15 at 07:55
-
Here the new [documentation](http://symfony.com/doc/current/bundles/LiipImagineBundle/filters.html#load-your-custom-filters) for custom filters. – Jean-Luc Barat Jul 04 '16 at 19:34