blogspot sites tend to be made by people who are utterly and hopelessly clueless, and simply don't understand that they are hotlinking. This is not only immoral, but creates a terrible user experience if there are lots of them on a single page. I don't know about current blogspot admiistration, but at times in the past they have been helpful when you ask them to remove a hotlink. But it can get to be a whack-a-mole, not worth it if there are vast numbers of them.
Exact wording will depend on your server type; if Apache, it would go something like this:
RewriteCond %{HTTP_REFERER} !^https://example\.com/
RewriteCond %{HTTP_REFERER} .
RewriteCond %{HTTP_REFERER} !\b(onesite|othersite|thirdsite)\b
RewriteRule \.(jpg|gif|png)$ /pictures/hotlink.png [L]
Translation: if all conditions are met, rewrite the image request to an image that is intentionally made as hideous as possible. If you don't feel like creating one--mine features NO HOTLINKS text on a chartreuse-and-magenta background--simply block the request [F]. But the image is a good approach because it makes the offending site look bad, and it may actually be less work for your server.
Condition #1: referer is not your own site
Condition #2: but there is a referer (this is to exempt search engines, who don't send a referer with image requests)
Condition #3: this part is site-specific. Poke holes for other sites that
are allowed to hotlink or direct-link to your images. My own exemptions are a couple of message boards where I might post a picture that ultimately lives on my own site, and just-to-be-safe some other sites that belong to me. Most importantly, if your images are indexed by search engines, also poke holes for google, bing and so on.
If you're not on apache, head for the appropriate subforum such as IIS for guidance on syntax.