What does the image optimization check look for?
It looks at how your images are delivered and whether they're slowing the page down. Specifically:
- Modern formats — whether images use efficient formats like WebP or AVIF rather than large legacy JPEG/PNG.
- Right-sizing — whether images are sized to their display dimensions, not served far larger and scaled down by the browser.
- Compression — whether images are compressed to a sensible quality rather than shipped at full weight.
- Dimensions set — whether
widthandheightare declared so images don't cause layout shift.
Well-optimised images pass; some oversized or unoptimised images is a warning; heavy, unoptimised images significantly slowing the page is a fail.
How is it evaluated, and how is it scored?
GEObubbly inspects the page's images for format, size, compression and declared dimensions. It's an extended Performance & Mobile UX check that runs against the page's image assets.
Why image optimization matters for SEO and GEO
On most pages, images account for the largest share of page weight, so optimising them is often the single biggest performance win available. Four things matter. Format: modern formats like WebP and AVIF deliver the same visual quality at a fraction of the size of legacy JPEG and PNG. Sizing: serving a 3000px image into a 600px slot forces the user to download many times the data they need, so images should be sized — or served responsively with srcset — to their actual display size. Compression: most images can be compressed substantially with no visible loss. Dimensions: declaring width and height lets the browser reserve space, preventing the layout shift that hurts CLS. The hero image is frequently the LCP element, so optimising it directly improves loading metrics. Lighter images mean faster pages for users, better Core Web Vitals, and a site that's cheaper for crawlers to fetch. Descriptive alt text adds accessibility and image-search value on top.