I am currently developing the option for some users to upload images to the backend. These images should be displayed in the mobile application later.
I am at an early stage of development, I want to resize images that users upload to the server. But while I work locally with Wamp, it works fine when I want to apply a filter to images under about 1000X1000. Then the large images are not filtered, the original image is really stored, but the filtered one, which should be sent to the Internet / media / cache, is not.
I can’t find a solution yet, I have to say that I am new to Symfony development. I'm starting to think that this is due to the cache with Wamp.
Here is my configuration in config.yml for more accuracy:
liip_imagine: resolvers: default: web_path: ~ filter_sets: my_small: quality: 100 filters: thumbnail: { size: [275, 100], mode: outbound } my_big: quality: 100 filters: thumbnail: { size: [550, 550], mode: inset}
Has anyone encountered the same problem?
Tíbó source share