What This Means

One or more images on the page are using legacy raster formats (JPEG, PNG, or GIF) that have been superseded by modern compressed formats. WebP typically achieves 25-35% smaller file sizes than JPEG at equivalent visual quality; AVIF can be 50% smaller.

Why It Matters for SEO

Format modernization is one of the easiest wins in image optimization. Serving WebP or AVIF instead of JPEG/PNG reduces image file sizes without any quality tradeoff, directly improving page load time, LCP scores, and bandwidth consumption.

Browser support for WebP is now effectively universal (all major browsers). AVIF support is widespread but not yet universal — a progressive enhancement approach (AVIF with WebP fallback) is the recommended pattern.

What the Platform Checks

The platform inspects the image file extensions and Content-Type headers of fetched images. Fires for images served as JPEG, PNG, or GIF where the image would benefit from format conversion (typically for photographic or illustrated content).

How to Fix It

  • Convert to WebP: Use image conversion tools (Squoosh, cwebp, Sharp) to generate WebP versions of your JPEG and PNG images.
  • Serve with the picture element:
<picture>\n  <source srcset="image.avif" type="image/avif">\n  <source srcset="image.webp" type="image/webp">\n  <img src="image.jpg" alt="Description" width="800" height="600">\n</picture>
  • CDN automation: Cloudflare, Cloudinary, and similar CDN/image services can automatically convert and serve images in the best format supported by the requesting browser.
  • GIFs: For animated GIFs, convert to WebM or MP4 video — animated video formats are dramatically smaller than GIFs for the same visual content.

Find every legacy formatimage across your site

The audit identifies every legacy format image so you can prioritize the largest file size gains from format conversion.