Google Image Search drives more clicks than most teams realize — and good image SEO also lifts your rankings in regular search by improving page speed and topical relevance. This is the complete 2026 checklist: file names, alt text, surrounding context, performance, structured data, image sitemaps, and what has changed now that AI is reading your pictures directly.
1. Use Descriptive File Names
Google reads image filenames as a ranking signal. DSC_4392.jpg tells the crawler nothing. red-running-shoes-side-view.jpg tells it everything. Rules:
- Lowercase letters only
- Words separated by hyphens (not underscores)
- A few descriptive words is ideal
- Include the primary keyword you're targeting
- Avoid keyword stuffing — natural language only
2. Write Real Alt Text
Alt text serves two purposes: accessibility for screen readers and a major image-ranking signal for Google. The single most common mistake is treating it as a keyword dump.
- Good:
alt="Woman wearing red running shoes on a forest trail at sunrise" - Bad:
alt="running shoes red running shoes buy running shoes online" - Decorative images: use
alt=""(empty), not missing.
Aim for concise alt text that fully describes what is in the image and why it matters in context. Include the keyword if it fits naturally.
3. Surrounding Text Matters
Google uses the text immediately around the <img> tag — captions, paragraph text, and the <h2> above the image — to understand what the image is about. Place images next to relevant copy. A photo of a sunset embedded in a tutorial about CSS is wasted.
4. Specify Width and Height
Always set width and height attributes. This prevents CLS layout shifts and helps Google reserve space when rendering for indexing. It is also an indirect ranking signal because pages that pass Core Web Vitals rank better.
5. Use Modern Formats with Fallbacks
Switching from JPG/PNG to WebP or AVIF cuts file size substantially, which improves Largest Contentful Paint and therefore rankings. Always provide a fallback for the rare clients that don't support modern formats:
<picture>
<source srcset="/photo.avif" type="image/avif">
<source srcset="/photo.webp" type="image/webp">
<img src="/24picture/photo.jpg" alt="..." width="1600" height="900">
</picture>
6. Compress Without Mercy
The fastest image SEO win is compression. Run every image through our browser-based compressor before publishing — quality 80 for JPG/WebP is invisible to the eye and saves 50%+ of the bytes.
7. Lazy-Load Below the Fold
Add loading="lazy" to every image not in the first viewport. Google honors this attribute and crawls the images correctly. Pair it with decoding="async" to keep the main thread free.
Never lazy-load the LCP image. That backfires both for users and ranking signals.
8. Use Responsive Images with srcset
Serve a 4K image to a desktop and a 640 px image to a phone. srcset + sizes is now table stakes for ranking image-heavy pages. Use our resize tool to generate three sizes (640, 1280, 1920 widths is a good baseline).
9. Add Structured Data
For product pages, recipes, and articles where the image is central, mark it up with schema.org so Google can use it in rich results:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Red Running Shoes",
"image": ["https://example.com/shoes-front.jpg",
"https://example.com/shoes-side.jpg"]
}
</script>
Eligible image types include Product, Article, Recipe, VideoObject, Person, and Logo.
10. Submit an Image Sitemap
Add image entries to your XML sitemap so Google can discover them faster:
<url>
<loc>https://example.com/products/shoes</loc>
<image:image>
<image:loc>https://example.com/img/shoes.webp</image:loc>
<image:caption>Red running shoes on a forest trail</image:caption>
</image:image>
</url>
This is especially valuable for image-heavy sites (e-commerce, photography, recipe blogs).
11. Use Open Graph and Twitter Card Images
Every page should have og:image and twitter:image. They control what shows up in social previews and Google's Discover feed. Recommended size: 1200×630 px, JPG/PNG/WebP under 1 MB.
12. Optimize for AI / Multimodal Search
In 2026, search engines do not just read alt text — they look at the pixels. Models like Google's Gemini and Microsoft's Copilot extract concepts directly from images. Practical implications:
- The image itself must clearly show the subject. Crops and angles matter.
- Alt text and structured data become a secondary signal that confirms what the model already sees.
- Originality counts. Stock photos are recognized and devalued.
13. Host Images on Your Own Domain
Hot-linking to third-party CDNs splits image authority. When possible, serve images from your own domain (or a CDN under your control). This concentrates the SEO juice and improves caching.
14. Internal Linking from Image Captions
Image captions get higher reading rates than body text. Use them to add internal links to closely related content — not as keyword spam, but as "if you liked this image, here's the related deep dive."
15. Monitor with Search Console
Google Search Console has a dedicated "Images" filter for both queries and pages. Use it to see which images bring traffic, which queries you rank for, and where to invest more effort.
One-Page Audit Checklist
- Descriptive, hyphenated file names ✓
- Clear alt text on every meaningful image ✓
width/heightattributes on every image ✓- Modern format with fallback via
<picture>✓ - Compressed (quality ~80) ✓
loading="lazy"+decoding="async"below the fold ✓srcset+sizesfor responsive sizing ✓- Schema.org structured data on key images ✓
- Image entries in XML sitemap ✓
og:imageandtwitter:imageset ✓- Self-hosted, cache-friendly URLs ✓
Pro tip: image SEO compounds. A handful of well-named, well-compressed photos with proper alt text on a fast page will outrank dozens of generic stock images on a slow page — every time.
Tools That Make This Easier
- Image Compressor — drop file size before upload
- PNG → WebP — modern format conversion
- Image Resizer — generate srcset variants
- SVG Optimizer — for icons and logos
- Batch Converter — process whole folders at once
Conclusion
Image SEO in 2026 is performance + descriptive metadata + clean technical setup. None of the moves are individually heroic, but together they consistently lift rankings, drive image search traffic, and improve user experience. Run through the checklist on your top ten pages today — most teams find quick wins on every single one.

