gpt4 book ai didi

vb.net - 无需下载即可从 url 在图像框中设置图像

转载 作者:行者123 更新时间:2023-12-04 06:44:17 26 4
gpt4 key购买 nike

我正在 vb.net 中编写一个程序来收听广播。

我如何制作它以便我可以加载互联网图像而无需将其永久下载到硬盘驱动器。因为如果我这样做

PictureBox1.BackgroundImage = "http://www.bbc.co.uk/radio1/chart/assets/a/aviciivsnickyromero/single/icouldbetheonenicktim/artwork/26948.jpg"

但它会说“字符串”类型的错误 2 值无法转换为“System.Drawing.Image”。

最佳答案

将其下载到内存流。

Dim tClient as WebClient = new WebClient

Dim tImage as Bitmap = Bitmap.FromStream(New MemoryStream(tClient.DownloadData(url)))

PictureBox1.Image = tImage

关于vb.net - 无需下载即可从 url 在图像框中设置图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14839135/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com