Image SEO 2026 is no longer the 2019 version
Three developments have substantially changed image SEO since 2023: Google AI Overviews pull images straight into answers, Google Lens has become the primary visual search on mobile, and Google uses Vision-AI models to recognize image content — which means the alt text is no longer the sole source of truth. Anyone taking image SEO seriously in 2026 works on four levels: HTML attributes, file metadata, structured data, and the image sitemap.
For the fundamentals, see our image SEO basics post; here we cover the 2026 stack.
1. alt text — descriptive, not keyword-stuffed
The alt text (glossary entry) remains the most important image-SEO factor. What changed in 2024/2025: Google's Vision-AI now understands image content independently of the alt text. That has two consequences:
- Keyword stuffing gets penalized. An alt text like "SEO image optimize agency 2026" reads as a spam signal when the image shows a generic stock photo.
- Natural-language description wins. "Hand holding a smartphone showing a light-meter app during a beach sunset" is understood by screen readers and Google alike — and matches the image semantically.
Rule of thumb: write alt texts for a visually impaired person who wants to understand the image. No marketing phrases, no "image of…", concrete and factual.
2. Filename and directory
Search engines read the filename. img-2841.jpg is a waste, beach-sunset-bergen.jpg is gold. The 2026 recommendation: lowercase, hyphens instead of underscores, descriptive keywords, no special characters.
The directory helps too. /blog/2026/sunset.jpg gives Google more context than /uploads/sunset.jpg. On WordPress and similar CMSes, a permalink setup that carries the date or category is worth it.
3. Caption and surrounding text
An official Google statement from 2023: the caption sitting directly under the image (ideally as a <figcaption>) is weighted more heavily than alt text in many ranking signals. So if you had to choose: the caption matters more than the alt text — having both is optimal.
The surrounding text matters as well. Google uses the five sentences before and after the image as context. Calling an image "Sunset in Bergen" while the surrounding text talks only about winter sports confuses the ranking signal.
4. Schema.org ImageObject — the structured data
Schema.org markup helps Google attribute images unambiguously. The minimum:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ImageObject",
"contentUrl": "https://your-site.com/image.jpg",
"name": "Sunset in Bergen, Norway",
"description": "Shot from Mount Fløyen, August 2025.",
"creator": { "@type": "Person", "name": "Marie Klein" },
"license": "https://creativecommons.org/licenses/by/4.0/",
"creditText": "Photo: Marie Klein",
"copyrightNotice": "© 2025 Marie Klein"
}
</script>Important: creator, license and creditText are the fields Google Images uses for the image license display — you see them under each image in Google image search. Maintain them and you earn license badges in search.
5. Image sitemap
A dedicated image sitemap (or a regular sitemap with <image:image> tags) gives Google explicit hints about which images belong to which pages. Especially important for lazy-loaded images and CMS-generated galleries that are hard to crawl.
<url>
<loc>https://your-site.com/travel/bergen/</loc>
<image:image>
<image:loc>https://your-site.com/img/bergen-sunset.jpg</image:loc>
<image:caption>Sunset in Bergen</image:caption>
<image:license>https://creativecommons.org/licenses/by/4.0/</image:license>
</image:image>
</url>6. File metadata — IPTC and EXIF
Google reads IPTC metadata. If you maintain IPTC caption and IPTC copyright in the image (e.g. via Photoshop, Lightroom, or our metadata editor), those appear in Google image search under the license information.
EXIF, on the other hand: largely irrelevant for SEO. From a privacy standpoint it's often better removed — strip GPS and camera data before publishing.
7. Performance is image SEO
Since the 2021 Page Experience update, Core Web Vitals matter for image search too. Serve big images badly and you lose. Specifically:
- WebP/AVIF instead of JPG. Saves bytes — see our format comparison.
- Keep width and height. Prevents layout shift.
- Use fetchpriority and lazy deliberately. More in our CWV post.
8. Google Lens and AI Overviews
Two new sources of image traffic in 2026. Google Lens is Google's visual search — users photograph a product or plant and find similar images. If you have an e-commerce image of a popular product and serve it correctly (Schema.org Product, high resolution, clear background separation), you show up in Lens results.
AI Overviews are Google's AI-generated answers at the top of the results page. They cite images as evidence. Images with clear Schema.org markup and trustworthy context (author markup, an About page with Person markup, Schema.org Article with an author) get cited above average.
9. Image-SEO audit checklist
- Does every image have a meaningful alt text?
- Are the filenames descriptive?
- Do images sit under a caption?
- Are all images registered in an image sitemap?
- Does each page's top image have Schema.org ImageObject markup?
- Do we maintain IPTC caption and IPTC copyright in Photoshop/Lightroom?
- Are modern formats (AVIF/WebP) served?
- Is width/height set on every img element?
- Is each page's LCP image preloaded with fetchpriority="high"?
- Do we review the Google Search Console image report once a month?
The most common image-SEO mistakes in 2026
- Stock photos without differentiation. Google recognizes the same stock image on a hundred sites and gives your post no visibility.
- Image on an external CDN with no Schema.org reference. If you host the image on Cloudinary, you must enter the CDN URL in the image sitemap, otherwise it doesn't count toward your domain.
- alt="" for content images. Empty alt text is only okay for pure decoration. For content-relevant images it's a ranking loss.
- Multiple versions of the same image under different URLs. Confuses Google. One canonical URL per asset.
Sources
Google — Google Images Best Practices · Google — Image Sitemaps · Schema.org ImageObject · WCAG 2.2 — Non-text Content · Google Lens · IPTC Photo Metadata · Google — Image License Metadata.