如何以编程方式从URL保存图像? [英] How do I programmatically save an image from a URL?

查看:90
本文介绍了如何以编程方式从URL保存图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何以编程方式从URL保存图像?我正在使用C#,需要能够从URL中获取图像并将其存储在本地。 ......不,我不偷东西:)

How do I programmatically save an image from a URL? I am using C# and need to be able grab images from a URL and store them locally. ...and no, I am not stealing :)

推荐答案

写这样的东西会更容易:

It would be easier to write something like this:

WebClient webClient = new WebClient();
webClient.DownloadFile(remoteFileUrl, localFileName);

这篇关于如何以编程方式从URL保存图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆