function System.Drawing.Image RecupFichierImageInternet(UrlFichier:string);
WebClient := System.Net.WebClient.Create;
Img := nil; try Img := System.Drawing.Image.FromStream(WebClient.OpenRead(UrlFichier));
except on System.Exception do ;
end;
WebClient.Dispose; WebClient := nil;
Result := Img;
Exit;