Tom
Tom

Reputation: 11

Pull images from google search in c#

I'm building an application in c# that needs to search google for images, pull the first result and display it. How can I do it? Thanks, Tom

Upvotes: 1

Views: 7738

Answers (2)

Uwe Keim
Uwe Keim

Reputation: 40736

There is a (deprecated) Google Image Search API which you might use from your C# code. Here is an example on how to use it.

Upvotes: 3

Janez
Janez

Reputation: 2406

This could be helpful: http://www.codeproject.com/KB/IP/google_image_search_api.aspx

Upvotes: 1

Related Questions