Posts by Waldyr Felix • 31 points
1 post
-
3
votes3
answers1552
viewsA: How to download an image from the internet with C#?
You can use Webclient to do this: WebClient client = new WebClient(); Stream stream = client.OpenRead(imageUrl); Take a look at this article that explains better…