Image SEO helps search engines discover and understand the photographs, diagrams, and graphics on your website. For a local business, that can mean more than visibility in Google Images: a relevant image may also support a normal search result, a rich result, or a customer’s decision to trust the page.
The process is practical. Use original, useful images. Give each file a short descriptive name. Place it near relevant copy. Write alternative text for people first. Deliver an appropriately sized modern format. Then connect the image to the page through metadata and structured data where they are genuinely useful.
Why image SEO matters for a local business
Customers often want visual evidence before they contact a company. A roofing customer may want to see the kind of property work you perform. A cleaning customer may look for realistic interior results. A consultant may need diagrams that make a complex service easier to understand.
Those images perform three jobs:
- They explain. A useful photograph or diagram can communicate context faster than another paragraph.
- They establish credibility. Original work is stronger evidence than generic stock photography.
- They create another discovery surface. Google says images can appear across text results, Google Images, and Discover when they are discoverable and connected to relevant pages.
Image SEO is therefore not a separate gallery project. It is part of page quality.
1. Start with an image that deserves to be found
Search optimization cannot rescue an irrelevant visual. Choose an image because it helps the visitor understand the page.
Strong local-business examples include:
- A completed project shown in its real environment
- A service professional using recognizable equipment correctly
- A before-and-after pair with consistent framing
- A location or facility that customers will actually encounter
- A diagram that clarifies a process or decision
- A screenshot that proves the quality of a digital deliverable
Avoid decorative stock images that could belong to any competitor. If the image adds no information, it may not need to be on the page at all.
Google’s image SEO guidance recommends high-quality images placed near text that is relevant to their subject. The surrounding page affects how the image is understood.
2. Use a short, descriptive filename
A filename offers a light clue about an image’s subject. Rename camera defaults and export names before uploading.
Better:
miami-tile-roof-repair.webpsarasota-deep-clean-kitchen.webpwarehouse-pick-path-workflow.webpsmall-business-website-redesign-plan.webp
Weak:
IMG_4837.jpgfinal-final-2.pngimage1.webpseo-keyword-best-company-near-me-cheap.jpg
Keep the filename accurate, lowercase, and readable with hyphens. Do not add a list of nearby cities or repeat keywords that are not visible in the image.
3. Write alt text for the person who cannot see the image
Alternative text should convey the image’s relevant information in the context of the page. It is an accessibility requirement first and a search signal second.
For example:
- Too vague:
alt="roof" - Stuffed:
alt="Miami roof repair roofing company roofer near me best roof repair" - Useful:
alt="Crew replacing damaged barrel tiles on a South Florida home"
Ask: if the image disappeared, what would a person need to know to understand why it was there?
Decorative images should usually have an empty alt attribute: alt="". That tells a screen reader to skip them. Do not force a description onto a purely ornamental texture or divider.
Google identifies alt text as one of the most important image metadata fields and explicitly warns against keyword stuffing. The W3C image decision tree is a useful companion when you are unsure whether an image is informative, functional, or decorative.
4. Put the image near the words that explain it
An image of a tile-roof repair belongs beside the section that discusses tile-roof repair—not in an unrelated testimonial band simply because the layout has an empty space.
Use a caption when it adds context that is not obvious from the image itself:
Barrel-tile replacement during a residential repair in Miami-Dade County.
The caption can name the service and place naturally. It should not become a second alt attribute stuffed with variants of the same phrase.
5. Serve the right file format and dimensions
Images are often among the largest files on a page. A 4,000-pixel camera image should not be sent to a 600-pixel content column.
Use:
- JPEG or WebP for most photographs
- AVIF when your delivery workflow provides a reliable fallback
- PNG for raster artwork that truly needs lossless detail or transparency
- SVG for simple code-native logos, icons, and diagrams
Google Search supports common formats including JPEG, PNG, WebP, SVG, and AVIF. Match the filename extension to the actual file type.
Set intrinsic dimensions so the browser can reserve space before the image loads:
<img
src="miami-tile-roof-repair.webp"
alt="Crew replacing damaged barrel tiles on a South Florida home"
width="1440"
height="810"
loading="lazy"
decoding="async"
>
Use loading="eager" only for an important above-the-fold image. Most images below the first screen should load lazily.
6. Deliver responsive images, not one oversized file
Responsive markup lets a browser choose an image appropriate to the visitor’s screen. Google recommends providing a normal src fallback even when you use srcset or <picture>.
<img
src="service-area-map-1200.webp"
srcset="service-area-map-480.webp 480w,
service-area-map-800.webp 800w,
service-area-map-1200.webp 1200w"
sizes="(max-width: 700px) 92vw, 760px"
alt="Service map connecting three staffed locations to their coverage areas"
width="1200"
height="675"
>
This reduces unnecessary transfer size without hiding the image from crawlers.
7. Make the preferred article or page image explicit
When a page has several images, help platforms identify the representative one.
Use a relevant high-resolution image in:
og:imagefor link previews- The
imageproperty of Article, BlogPosting, Product, Recipe, or other legitimate structured data primaryImageOfPagewhen that accurately describes the page
Also provide the image’s width, height, and descriptive alt text in social metadata.
For Google Discover, Google’s current guidance recommends compelling images at least 1,200 pixels wide and enabling max-image-preview:large. Avoid text-heavy or generic logo images as the representative visual.
8. Keep image URLs crawlable and stable
Google discovers images in standard HTML <img> elements. It does not index CSS background images in the same way. If an image is meaningful content, render it as an image element rather than only as a background.
Check that:
- The image URL returns a successful status
robots.txtdoes not block the media directory- The page containing it is indexable
- The image is not hidden behind a login
- The same asset uses the same URL when reused
- Your CDN domain is verifiable in Search Console, if images live elsewhere
An image sitemap can help with large libraries or images that are otherwise difficult to discover. A small local-business site with ordinary HTML images may not need a separate image sitemap; clarity in the main pages comes first.
9. Optimize for quality and speed together
Compression should remove invisible weight, not make the subject muddy. Compare the final file at the size it will actually render.
A practical workflow:
- Crop to the composition the page needs.
- Resize to a sensible maximum display width.
- Export a modern format at a visually acceptable quality.
- Check the result on a normal phone, not only a large desktop monitor.
- Run PageSpeed Insights and inspect the largest-image recommendations.
Aim for a clear image that loads efficiently. There is no universal kilobyte limit because photographs, diagrams, and transparent artwork compress differently.
10. Measure image search instead of guessing
In Search Console’s Performance report, change the search type to Image. Review:
- Queries that show your images
- Pages receiving image-search impressions
- Changes in clicks and click-through rate
- Countries and devices where image visibility appears
The data may be sparse for a small site. That does not make the work wasted: better alt text, dimensions, formats, and context also improve accessibility, performance, and page comprehension.
A local-business image SEO checklist
- Use an original or genuinely useful image
- Crop it for the page rather than uploading the raw camera file
- Export a supported modern format
- Use a short, descriptive filename
- Set accurate width and height
- Write concise contextual alt text
- Use empty alt text for decorative imagery
- Place the image near relevant copy
- Add a caption when it provides useful context
- Use
srcsetandsizesfor responsive delivery where practical - Lazy-load below-the-fold images
- Keep meaningful images in HTML, not only CSS backgrounds
- Add a representative image to Open Graph and relevant schema
- Enable large image previews for indexable article content
- Confirm media URLs are crawlable and successful
- Review Image search data in Search Console
Common image SEO questions
Should alt text include the city name?
Only when the location is relevant and supported by the image or its context. “Technician repairing a commercial roof in Miami” can be useful. Appending ten city names to every image is not.
Are stock images bad for SEO?
They are not automatically disallowed, but generic imagery rarely differentiates the page or proves your work. Original, relevant images are usually more useful to customers.
Should I put text inside article images?
Avoid relying on embedded text. It may be hard to read on mobile, inaccessible to screen readers, and awkwardly cropped in search previews. Put essential information in HTML and use the image to support it.
Can an AI-generated image rank?
Search engines can index supported image files regardless of how they were produced. The more important questions are whether the image is original, relevant, high quality, accurately described, and appropriate for the page. Do not use a synthetic image as false evidence of a real project, person, or result.
BizScribe applies these principles across SEO services, content, and website builds. If your image library is slowing down or confusing the site, a free homepage preview can show how stronger visual evidence and page structure work together.
