Silverlight 4 BitmapImage - bmp 文件支持
MSDN 提到了对 PNG 和 JPG 的支持,但许多人正在尝试 setSource(file.bmp) 并抱怨“灾难性失败”。
有人可以澄清一下,是否支持 bmp 吗?
如果没有,在 silverlight 中显示 bmp 的最佳方式是什么?
MSDN mentions support for PNG and JPG, but many people are trying setSource(file.bmp) and complaining about "Catastrophic failures".
Can someone clarify this, is bmp supported or not ?
And if not, what is the best way for displaying a bmp in silverlight ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Silverlight 不支持 BMP。 BMP 是一种非常古老且不是非常有效的格式(与 PNG 和 JPG 相比),因此他们没有费心去支持它。
Silverlight仅支持JPG和JPG格式PNG 格式图像。
显示它们的最佳方法是在 Web 服务器上将它们转换,以便可以将它们作为 PNG 提供。网络服务器将能够访问足够的 .Net 库,以便 BMP=>PNG 转换变得容易。我不会费心去创建一个 BMP 加载器客户端。
BMP is not supported in Silverlight. BMP is a very old and not a very efficient format (compared with PNG & JPG) so they have not bothered to support it.
Silverlight only supports JPG & PNG format images.
The best way to display them is to convert them on the web server so they can be served up as PNGs. The webserver will have access to enough .Net libraries that BMP=>PNG conversion will be easy. I would not bother to create a BMP loader client-side.