0

我想为添加到我的项目中的图像设置UriSourceof 。BitmapImage

  BitmapImage b = new BitmapImage(new Uri(@"pack://application:,,,/"
           + Assembly.GetExecutingAssembly().GetName().Name
           + ";component/"
           + "5.jpg", UriKind.Absolute));

我必须安装的任何软件包或什么..例外

“系统不支持异常”

4

2 回答 2

0

试试这个希望它会工作。

Uri uri = new Uri(imageRequestUrl, UriKind.Absolute);
BitmapImage bitmapImage = new BitmapImage(uri);
于 2013-11-08T08:23:33.770 回答
0

这可能是由于图像中的元数据错误。查看此 http://code.logos.com/blog/2010/07/exceptions_throw_by_bitmapimage_and_bitmapframe.html 了解更多信息。

于 2013-11-08T08:07:49.423 回答