I have a hyperlink with an image, I need to read / load an image from this hyperlink and assign it to a byte array (byte []) in C #
Thank.
WebClient.DownloadData is the easiest way.
var webClient = new WebClient(); byte[] imageBytes = webClient.DownloadData("http://www.google.com/images/logos/ps_logo2.png");