avif for drupal 9 image_optimize
Budget: $2 – $8 USD
For my drupal 9 website (Asset-Trade.de), I like to add AVIF images to my existing WEBP with JPG fallback.
To get this structure :
<picture>
<source srcset="img/photo.avif" type="image/avif">
<source srcset="img/photo.webp" type="image/webp">
<img src="img/photo.jpg" alt="Description of Photo">
</picture>
Currently the site uses image_optimize module with the webp add on, but there is currently no avif module for this avif ImageAPIOptimizeProcessor see https://git.drupalcode.org/project/imageapi_optimize_binaries/-/blob/8.x-1.x/src/Plugin/ImageAPIOptimizeProcessor/OptiPng.php
To get this structure :
<picture>
<source srcset="img/photo.avif" type="image/avif">
<source srcset="img/photo.webp" type="image/webp">
<img src="img/photo.jpg" alt="Description of Photo">
</picture>
Currently the site uses image_optimize module with the webp add on, but there is currently no avif module for this avif ImageAPIOptimizeProcessor see https://git.drupalcode.org/project/imageapi_optimize_binaries/-/blob/8.x-1.x/src/Plugin/ImageAPIOptimizeProcessor/OptiPng.php