在 Silverlight 中加载图像

发布于 2024-11-08 10:49:27 字数 366 浏览 0 评论 0原文

我想创建一个 WritableBitmap 并将流中的位图显示到 Image 对象上。如何在 Silverlight 中做到这一点。我正在执行以下操作,但这是行不通的。

  Image img = new Image();

  System.IO.Stream stream =  File.OpenRead("1.bmp"); //Getting access permission error

  WriteableBitmap bmp1 = new WriteableBitmap(100, 100);
  bmp1.SetSource(stream);
  //do operations with bmp1 

  img.Source = bmp1;

I want to create a WritableBitmap and display a bitmap from stream onto a Image object. How to do that in Silverlight. I am doing the following which is not working.

  Image img = new Image();

  System.IO.Stream stream =  File.OpenRead("1.bmp"); //Getting access permission error

  WriteableBitmap bmp1 = new WriteableBitmap(100, 100);
  bmp1.SetSource(stream);
  //do operations with bmp1 

  img.Source = bmp1;

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

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

发布评论

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

评论(1

故笙诉离歌 2024-11-15 10:49:27

在 Silverlight 中,文件 I/O 受到很大限制。

检查这篇文章

在浏览器 Silverlight 应用程序中 - 客户端文件/目录访问

In Silverlight, file I/O is pretty constrained.

Check this post

In Browser Silverlight Application - Client Side File/Directory access

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文