public System.Drawing.Image RecupFichierImageInternet(string UrlFichier)
{
System.Net.WebClient WebClient = new System.Net.WebClient();
System.Drawing.Image Img = null;
try
{
Img = System.Drawing.Image.FromStream(WebClient.OpenRead(UrlFichier));
}
catch { }
WebClient.Dispose();
WebClient = null;
return Img;
}