10-01-17, 02:31 PM
امم ..جرب هذي :
PHP كود :
Dim wc as new WebClient
Dim imgData As Byte() = wc.DownloadData("url")
Using (Dim ms As new System.IO.MemoryStream(imgData))
Using (Dim img = Image.FromStream(ms))
PictureBox1.Image = img
End Using
End Using

