Reputation: 5941
Hi there is a google page http://www.google.com/imghp where we can load image and search the internet if it exist on some pages, my question is how to do it from c# but not to get all images similar or sth, only pages where this image exist.
Upvotes: 0
Views: 370
Reputation: 91497
Previously, the way to do that was with Google's Image Search API, but it is now deprecated and won't be around much longer. You can still use it while it lasts.
As an alternative, there is Microsoft's Bing API, with the Image SourceType.
Edit: From the link I posted above:
The Google Image Search API has been officially deprecated as of May 26, 2011. It will continue to work as per our deprecation policy, but the number of requests you may make per day may be limited.
From the deprecation policy, section 1.3:
... For a period of three years after an announcement (the "Deprecation Period"), Google will use commercially reasonable efforts to continue to operate the Deprecated Version of the Service ...
So, you can expect the Google Image Search API to be around until May 26, 2014. You can enjoy it still for a couple of years.
Upvotes: 1
Reputation: 65554
Use TinEye:
https://www.tineye.com/commercial_api
https://api.tineye.com/documentation
Upvotes: 1