I am trying to use LiipImagineBundle with Symfony to generate the thumbnails in my application. The thumbnails shall have a size of 125 x 125. I have the following setup in my config.yml:
liip_imagine:
resolvers:
default:
web_path: ~
filter_sets:
cache: ~
my_thumb:
quality: 75
filters:
thumbnail: { size: [120, 90], mode: outbound }
And in my twig:
<img src="{{ 'uploads/23/56ee92df677bf1907800427635419394.jpg' | imagine_filter('my_thumb') }}" class="img-thumbnail" />
I must seem something to be missing. What i checked so far is:
- intercept_redirects is set to false
- and that the original images exists under the given path.
Can someone point me into the right direction?