Display .webp but download .jpg

No, just upload JPG format from panel and render WEBP format from frontend like that:

<?= $image->thumb(['width' => 800, 'format' => 'webp']) ?>

or

<img src="<?= $image->thumb(['width' => 800, 'format' => 'webp'])->url() ?>"> alt="">
1 Like