Images not using modern format: what it is, why it matters, and how to fix it
One or more images use legacy formats (JPEG, PNG, GIF) instead of modern formats (WebP, AVIF) that offer significantly better compression at equivalent quality.
Where this fits: performance in SEO
Why images not using modern format hurts your rankings
WebP images are 25-35% smaller than equivalent JPEG images, and AVIF offers even greater savings. Since images typically account for the majority of page weight, converting to modern formats can dramatically reduce load times. Google PageSpeed Insights specifically flags images that could benefit from modern formats.
This is a low-severity issue: a polish item. Fix it in batches during scheduled maintenance; the win is cumulative quality, not a step change.
How to fix it
Convert images to WebP or AVIF format. Use the <picture> element to serve modern formats with JPEG/PNG fallbacks for older browsers. Most image CDNs and build tools can automate format conversion.
<picture>
<source srcset="image.avif" type="image/avif" />
<source srcset="image.webp" type="image/webp" />
<img src="image.jpg" alt="Description" />
</picture>Frequently asked questions
What does "Images not using modern format" mean?
One or more images use legacy formats (JPEG, PNG, GIF) instead of modern formats (WebP, AVIF) that offer significantly better compression at equivalent quality.
Why does images not using modern format matter for SEO?
WebP images are 25-35% smaller than equivalent JPEG images, and AVIF offers even greater savings. Since images typically account for the majority of page weight, converting to modern formats can dramatically reduce load times. Google PageSpeed Insights specifically flags images that could benefit from modern formats.
How do I fix images not using modern format?
Convert images to WebP or AVIF format. Use the <picture> element to serve modern formats with JPEG/PNG fallbacks for older browsers. Most image CDNs and build tools can automate format conversion.
How serious is this issue?
This is a low-severity issue: a polish item. Fix it in batches during scheduled maintenance; the win is cumulative quality, not a step change. It belongs to the performance family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects images not using modern format on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by images not using modern format, and hands you a ready-made fix task.
Check my site free