使用 Delphi Prism 在计算机上保存 HTTP jpeg 图像?
我有一个使用 Delphi Prism 编写的脚本来提取网页上的特定图像。
我已经完成了只需将 url 放入 PictureBox.ImageLocation 即可在 PictureBox 中显示图像的部分
如何将此图像保存到计算机上的某个位置?
非常感谢
I have a script written using Delphi Prism to extract specific images on webpages.
I got up to the part where i can show the image in PictureBox by simply placing the url in PictureBox.ImageLocation
How can I save this image to somewhere on my computer?
many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 System.Net.WebClient 中的 DownloadFile 方法。
Use the DownloadFile method from System.Net.WebClient.