2008年10月16日 星期四

抓網路上的圖片

如果想要抓網路上的圖片下來,推薦一個不錯的類別:WebClient
下面範例,是將網路上的圖片抓下後,另存到 D 槽 的2.jpg


using System.Net;
using System.IO;

WebClient   oWebClient   =   new   WebClient();
oWebClient.DownloadFile( "http://bks4.books.google.com/book.jpg" , "d:\\2.jpg"); 
oWebClient.Dispose();

沒有留言:

張貼留言