gpt4 book ai didi

c# - 如何在Windows8 Metro应用程序中动态下载和显示图像

转载 作者:行者123 更新时间:2023-12-01 20:16:01 25 4
gpt4 key购买 nike

我在运行时从 xml 文件读取器获取图像 URL。该图像 URL 将传递给以下方法以动态下载它。

 public void Display_Image(string MyURL)
{
BitmapImage bi = new BitmapImage();
bi.UriSource = new Uri(this.BaseUri, MyURL);
Img_Poster.Source = bi;
}

但这行不通。我没有得到任何图像来源。上面的代码在编译时提供的静态 URL 下工作得很好。我还需要做什么?

最佳答案

我下面建议的方法已经过时了。但是,支持创建使用在运行时确定的 Uri 动态创建的新位图图像,并且可以在 Windows 8 的 RTM 版本上运行。 Display_Image(url) 应该按您的预期工作。

<小时/>

您可以使用 CreateFromUri 帮助程序获取图像流:http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.streams.streamreference.createfromuri.aspx#Y0

var stream = RandomAccessStreamReference.CreateFromUri(new Uri(imageUrl))

然后您应该能够将位图的源设置为助手返回的 RandomAccessStream

关于c# - 如何在Windows8 Metro应用程序中动态下载和显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9544622/

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