Hi! I would like to crop images and tranform them to JPEG files. This is my Code (Twig):
{{ image.crop(200,200, {'format':'jpeg', 'quality' : 90 }).url() }}
All parameters work except the format option. PNGs are still PNGs afterwards. Tried ‘jpg’ and ‘jpeg’ and also ‘thumb’ instead of ‘crop’. Is there a way to force this?
Thank you!