在 Silverlight 中加载图像
我想创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Silverlight 中,文件 I/O 受到很大限制。
检查这篇文章
在浏览器 Silverlight 应用程序中 - 客户端文件/目录访问
In Silverlight, file I/O is pretty constrained.
Check this post
In Browser Silverlight Application - Client Side File/Directory access