当位图图像的源是 Build Action = Resource 的图像时,如何以编程方式创建位图图像?

发布于 2024-11-15 09:33:02 字数 300 浏览 3 评论 0原文

当位图图像的源是 Build Action = Resource 的图像时,如何以编程方式创建位图图像?

当我尝试以下操作时,我收到无效的 URI 异常:(

BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));

我正在使用 silverlight 4,并且此代码位于我的解决方案的许多项目之一中(它是 silverlight 类库,而不是 silverlight 应用程序)。

How to create a bitmap image programmatically when its source is an image with Build Action = Resource?

When I try the following I get an invalid URI exception :(

BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));

I'm using silverlight 4 and this code is inside one of the many projects of my solution (it's a silverlight class library and not the silverlight application).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

海拔太高太耀眼 2024-11-22 09:33:02
BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));

应该是:

BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png", UriKind.Relative));

Images/MyImage.png 还假设您的图像位于名为 Images 的文件夹内。

BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png"));

should be:

BitmapImage image = new BitmapImage(new Uri("/MyAssembly;component/Images/MyImage.png", UriKind.Relative));

Images/MyImage.png also assumes your image is located inside a folder called Images.

物价感观 2024-11-22 09:33:02
var image = new ImageInline(new Uri("/BF.SilverlightClient;component/Views/Reports/ChartLegendBar.png", UriKind.Relative))
            { Width = 200, Height = 25};
var image = new ImageInline(new Uri("/BF.SilverlightClient;component/Views/Reports/ChartLegendBar.png", UriKind.Relative))
            { Width = 200, Height = 25};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文