On my fortrabbit server running PHP 8.0, I’m using the IM driver but not seeing the ‘format’ option under crop() do anything. It falls back to my default ‘webp’ format that I set in the config.
The following code…
<img src="<?= $image->crop(270, 195, ['format' => 'jpg', 'quality' => 80])->url() ?>" ?>
outputs…
<img src="https://example-image-270x195-crop-q80.webp" />
