Pages

Thursday, July 11, 2013

How to get image from url i C# .NET

A very simple one liner to fetch an image from an url in C#


System.Drawing.Image.FromStream(new WebClient().OpenRead(imageUrl)); 

No comments:

Post a Comment