如何在Silverlight4中将BitmapImage转换为字节数组?

时间:2012-01-02 06:37:22

标签: c# silverlight-4.0

我试图将BitmapImage转换为字节数组,但没有得到确切的解决方案。 Silverlight库中没有Image.Save()方法。 如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

如果你的图像源在项目中,你可以使用它..

var uri = new Uri("/ReferencedAssembly;component/default.png", UriKind.Relative);
var streamInfo = System.Windows.Application.GetResourceStream(uri);
var stream = streamInfo.Stream; 

将流转换为bytes array ..

如果图像是某个其他位置

Using httpwebrequest to get image from website to byte[]

此致