try the following:
string url ="http://www.google.ru/images/srpr/logo11w.png" PictureBox picbox = new PictureBox(); picbox.Load(url); Bitmap bitmapRemote = (Bitmap) picbox.Image;
url is an image on the Internet, we create a new instance of the PictureBox, and then we call the NOT ASYNC procedure for loading the image from the URL when the received image receives the image as a raster image. You can also use Threading to work with the form, invoke loading in another thread, and pass the delete method to get the image upon completion.
vitalinvent
source share