Image Loading Checker

Score whether images load the hero now and lazy-load the rest — not a ranking trick, just LCP hygiene.

What this tool gives you

loading score
Fetch or paste
LCP hygiene
Starter snippet

Check image loading hints

Fetch a public page or paste HTML. The checker scores LCP vs lazy-load — not a ranking trick.

What this checker looks for

The first image should load now. Everything else can wait until it is near the viewport.

Hero is eager

Never put loading="lazy" on the likely LCP image.

Gallery is lazy

Supporting photos after the first should use loading="lazy".

fetchpriority high

Tell the browser the hero competes earlier on the network.

decoding async

Keep decode work off the main thread.

src still required

Loading hints cannot fetch a file that is not referenced.

Not a ranking lever

This is LCP hygiene, not a citation trick.

How to use the checker

Fix alt and dimensions first, then loading hints, then share cards.

1

Check the live page

Fetch the public URL or paste the HTML from view-source.

2

Keep the hero eager

The first <img> should omit loading or use eager. Never lazy-load LCP.

3

Lazy-load the rest

Gallery and supporting photos after the first should use loading="lazy".

What healthy image loading usually includes

Eager first image. Lazy galleries. fetchpriority high on LCP. decoding async everywhere.

PartJobDefault for public sites
First imageProtect LCPomit loading or loading="eager"
Later imagesSave bandwidthloading="lazy"
fetchpriorityCompete earlier on the networkhigh on the hero only
decodingKeep decode off the main threaddecoding="async"
NeverLazy-load the heroloading="lazy" on the first <img> delays paint
srcPoint at a real filesrc present

Related GEO pages

Fix alt, then width/height, then loading, then Open Graph.

Image loading FAQs

Does loading="lazy" on the hero help ChatGPT cite my page?

No. Lazy-loading the first image delays Largest Contentful Paint. Citations still depend on crawl access, answer-ready content and corroboration.

Should every image use loading="lazy"?

No. Keep the likely LCP image eager (omit loading or use eager). Lazy-load gallery and supporting photos after the first.

Is fetchpriority="high" required?

Not required, but it helps the hero compete earlier on the network. Pair it with an eager first image, not a lazy one.