I\'m trying to use a local c# app to pull some images off a website to files on my local machine. I\'m using the code listed below. I\'ve tried both ASCII encoding and UTF
You can use the following method to download an image from a web site and save it, using the Image class:
WebRequest req = WebRequest.Create(imageUrl); WebResponse resp = req.GetResponse(); Image img = Image.FromStream(resp.GetResponseStream()); img.Save(filePath + fileName + ".jpg");