Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google images: get large image URL from thumbnail URL

Is there any way to build the URL of a medium/large/original image corresponding to a thumbnail URL returned by the Google Custom Search API?

In other words, from this thumbnail URL:

https://t3.gstatic.com/images?q=tbn:ANd9GcRYiGRk0xt6OXpRa3j7ySJNeATepTe7zaWzm1G6KpGAwpHePcTmYPYp6WI

is it somehow possible to find the URL of a bigger image?

I tried to replace tbn (for 'thumbnail'?) in the q URL param by medium, large,... but without success.

like image 776
sdabet Avatar asked Jan 13 '15 15:01

sdabet


People also ask

How do I get a full image URL?

Search for the image. In Images results, click the image. At the top of your browser, click the address bar to select the entire URL. Copy.

How do I get the URL of a website thumbnail?

you can use something like urlbox.io - screenshot service API. Its got easy to integrate API and generates thumbnails as per your requirement.


2 Answers

I'm pretty sure this is not possible with any permutation of the thumbnail URL. I don't think there is any relationship between the thumbnail name and the original's name. The thumbnail is called "Billy" and the full image is called "Peter". There's no relationship between the two to my knowledge.

Furthermore, if you have the thumbnails stored, it's not even a foregone conclusion that the original images still exist at their original location. Nor will the API be helpful doing a reverse image search.

The best you can do (to my knowledge) is attempt to scrape a reverse image search based on the thumbnail. This will in the majority of cases -- but certainly not all cases -- give you the large image URL. But only if the original image still exists. (Of course, scraping Google is a violation of TOS... so be aware of the downsides)

http://skyzerblogger.blogspot.jp/2013/01/google-reverse-image-search-scraping.html

like image 176
Bangkokian Avatar answered Sep 21 '22 01:09

Bangkokian


This might not be the perfect answer , but it is a perfect work around in your case , as you have a specific problem , that not everyone has , and you only have the thumbnail resource available.

Using the custom google search api you can actually start searching for similar images like the one you actually have , which will for sure return exact matches ( as the thumbnail is fetched before using google search ).

For Example

this is a thumbnail image URL:

https://t3.gstatic.com/images?q=tbn:ANd9GcRYiGRk0xt6OXpRa3j7ySJNeATepTe7zaWzm1G6KpGAwpHePcTmYPYp6WI

and this is the large results returned by using thumbnail image URL:

https://www.google.com.eg/search?sa=G&q=domestic+shorthair+cat&tbm=isch&tbs=simg:CAQSxwEaxAELEKjU2AQaAggEDAsQsIynCBqcAQo6CAISFMghlRScFL8TnhSXIPcdmSCTIcUhGiDIAu9X2fApCXdkXBwfLo_1kiDszYQcYF96Sg7sPDcwYBgpeCAMSKOsLjQTsC48E8gqeFYEF3RaOBNoWoy2iLbAioiOaI5kjoC2hLbsk3yEaMFWwvVZ7aOHrJIxtE09n9d-g8XCiJ1fbX0O5IHN1tWuHZNVrNQkBJrcx8RM4KEMRUwwLEI6u_1ggaCgoICAESBC_1KA-UM,isz:l&ei=C_7ZVM-FMOvmywO32IKQDQ&ved=0CBwQ2A4oAw&biw=1280&bih=637

after applying Large Filter

Custom Search enables image search now , and also enable filtering results, please read more Here

like image 30
ProllyGeek Avatar answered Sep 21 '22 01:09

ProllyGeek