我需要在Silverlight 5.0中显示2,54MB jpeg图像(15232 x 7912像素,96DPI)。
我使用BitMapImage组件并且图像没有显示。 通过双击图像打开浏览器窗口时,有时会出现。
当我在ImageFailed处理程序中有断点时,我在eventargs中看到ErrorException:" AG_E_NETWORK_ERROR" (InnerException为null)。
这是什么意思?
谢谢,对不起我的英语。 代码如下。
string url = await GetDocumentURLAsync(...);
bitmapImage.UriSource = new Uri(url);
image.Source = bitmapImage;
image.ImageFailed += (sender, e) =>
{
System.Diagnostics.Debug.WriteLine(e.ErrorException);
};