How to load an image from the web?
-
Is it possible to display images from web by URL?
As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Just guessing, and from memory: You can probably use HttpWebRequest to setup a stream to the image, the use myBitmap = new Bitmap(stream) Just use google to find out how to use HttpWebRequest.
-
Is it possible to display images from web by URL?
As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Jarek G wrote:
Is it possible to display images from web by URL?
You can use WebClient class to give request to a URL. Alternatively you can use HTTPWebRequest.