如何在Windows Phone 8.1存储应用程序

时间:2015-07-30 13:05:09

标签: c# bitmap windows-phone-8.1 bytearray writeablebitmapex

我想将WriteableBitmap转换为byte []并且在Internet中有大量示例,但没有一个可以工作,或者在我的运行时中具有不是最新的方法,即Windows Phone 8.1商店项目。 这是我的WriteableBitmap对象。

BitmapImage bmpImage = new BitmapImage(new Uri("ms-appx:///Assets/no_pic.png", UriKind.Absolute));
WriteableBitmap DefaultPhotoBmp = new WriteableBitmap(bmpImage.PixelWidth, bmpImage.PixelHeight);

使用时

DefaultPhotoBmp.ToByteArray();
来自WriteableBitmapEx库的

我不认为它将图像内部转换为字节数组,但将WriteableBitmap对象转换为字节数组..我需要图像

我想要做的就是将字节数组内的图片转换为HTTP并通过HTTP发送。怎么样?

0 个答案:

没有答案