Images
LOWProduct images meet Google’s 50,000-pixel area threshold
At least one product image on each PDP has width × height ≥ 50,000 pixels. Tiny product images get dropped from Google’s shopping rich-result modules and are unhelpful to AI agents quoting your product visually.
What this check looks for
Google’s merchant-listing image-quality recommendation is the only quantitative image rule across the agentic-commerce specs we track: product images should have an area of at least 50,000 pixels (≈ 250 × 200). We inspect each sampled PDP’s `<img>` tags and read explicit `width=` and `height=` attributes. A PDP passes when at least one image meets the threshold. PDPs where no `<img>` carries explicit dimensions are marked indeterminate — this check does not HEAD image URLs, so dimensions stripped from HTML attributes count against the merchant until they are restored.
Which AI surfaces it affects
- Google AI Mode (UCP)80
- ChatGPT (ACP)60
- Perplexity50
- Meta AI50
- Microsoft Copilot40
Weighted against the live specs — ACP 2026-04-17, UCP 2026-04-08.
How to fix it
Upload higher-resolution product images (area ≥ 50,000 pixels)
Shopify
A few minutes- Open Shopify admin → Products → select a product.
- Replace the product's main image with one whose width × height ≥ 50,000 pixels.
- If your theme generates srcset variants, ensure the largest variant meets the threshold.
BigCommerce
A few minutes- Open Store Settings → Files & Images → Product Images.
- Upload replacement images with width × height ≥ 50,000 pixels.
- Re-link from the product's edit page.
WooCommerce
A few minutes- WP Admin → Products → edit product → Product image.
- Replace with an image whose width × height ≥ 50,000 pixels.
- Regenerate thumbnails if your theme caches variants (Tools → Regenerate Thumbnails plugin).
Custom / headless
Developer- Replace your product image pipeline output to emit images with width × height ≥ 50,000 pixels.
- If you use a `<picture>` element with srcset, ensure the LARGEST source meets the threshold.
- Server-render the chosen image's width/height attributes so non-JS crawlers can verify dimensions without fetching.
<picture>
<source media="(min-width: 1024px)" srcset="/img/product-1200.webp" width="1200" height="900" />
<source media="(min-width: 640px)" srcset="/img/product-800.webp" width="800" height="600" />
<img src="/img/product-400.webp" width="400" height="300" alt="Product front view" loading="lazy" />
</picture>The spec it's pinned to
Image quality (≥50K pixels area)
Google’s merchant-listing structured-data rendering rules require product images to have an area of at least 50,000 pixels.
Does your store pass this check?
Run the full audit — 82 checks across five AI shopping surfaces. Most tools only check whether you get mentioned; we check whether an agent can buy from you.