I'm using LiipImagineBundle to make thumbnails for images uploaded by users. So far so good. Today I discovered that some users are uploading tiff images, that are not displayed in most modern browsers. So, I'd want to convert thumbnails for such files in other format (e.g. in png), but I'm stuck between loaders and filters. I can possibly use imagick.
Asked
Active
Viewed 478 times
2
-
1Use `format` option. One of my setup that works: https://stackoverflow.com/a/37845881/3675759 – malcolm Aug 10 '17 at 18:51
-
Thanks for suggestion, but it's not working. I get an error complaining that "Source image could not be found". It looks like it's searching for foo.png (while image is foo.tiff) – Massimiliano Arione Aug 11 '17 at 09:55
-
1Thanks @malcolm , solution worked for me for PNG -> JPEG – gorodezkiy Feb 05 '21 at 23:07