Force Format with .crop

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!

You cannot pass the format to the crop() method. Use the thumb() method instead:

<?= $image->thumb(['width' => 200, 'heigth' => 200, 'format' => 'jpg', 'crop' => 'center']) ?>