PictureBox.Load 方法从互联网加载图像在第一次请求时速度很慢
我之前发布过一个关于类似问题的问题,并设法通过将对象的“Proxy”属性设置为 null 来解决该问题。然而,对于 PictureBox.Load(String) 这是一个不同的问题。据我所知,没有代理属性。
因此,第一次调用 picPreview.Load(URL);
需要一段时间。
有谁知道在应用程序范围内或为 PictureBox 设置代理的方法吗?
谢谢。
PS:picPreview.ImageLocation = URL;
与picPreview.Load(URL);
的作用相同。
I have posted a question about a similar issue before, and managed to fix that by setting the "Proxy" property of the object to null. However, with PictureBox.Load(String) this is a different issue. As far as I know, there's no Proxy property for that.
And so, the first call of picPreview.Load(URL);
takes a while.
Is anyone aware of a method to set the Proxy application-wide, or for a PictureBox?
Thanks.
PS: picPreview.ImageLocation = URL;
does the same as picPreview.Load(URL);
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过首先将图像下载到 MemoryStream 来修复此问题。
I fixed this by downloading the image into a MemoryStream first.