指定网页路径上的图片,如何用c#编写程序把图片保存到电脑中
private void timer1_Tick(object sender, EventArgs e)//定时时间50ms
{
pictureBox1.ImageLocation = CameraIp;// "http://192.168.1.1:8080/?action=snapshot"这是要显示图片的URL; }
指定的URL是http://192.168.1.1:8080/?action=snapshot,如何把这个URL的图片保存到电脑上
求高手指点!!!
------解决方案--------------------pictureBox2.Image.Save("c:\\1.bmp");
------解决方案--------------------也可以用WebClient.DownloadFile直接从URL地址下载。
------解决方案-------------------- WebClient myWebClient = new System.Net.WebClient();
if (!FileC.IsExistFile(spath))
{
try
{
myWebClient.DownloadFile(surl, spath);
}
catch (Exception ex)
{
WriteLog("图片不存在(" + surl + ")\r\n" + ex.Message);
}
finally
{
}
}