我想知道如何将ImageSource
对象(在我的情况下是图像元素的源属性)转换为WriteableBitmap
. 构造WriteableBitmap(BitmapSource)
函数在 Windows 8 Metro 中不起作用,所以我不能这样做。
我试图将ImageSource
对象加载到流中然后使用WriteableBitmap.SetSource(stream)
,但我也不知道如何将图像加载到流中。
InMemoryRandomAccessStream ras = new InMemoryRandomAccessStream();
BitmapEncoder enc = await BitmapEncoder.CreateAsync(BitmapEncoder.PngEncoderId, ras);
byte[] pixelArray = new byte[(uint)photoBox.Height * (uint)photoBox.Width * 4];
enc.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Straight,
(uint)photoBox.Width, (uint)photoBox.Height, 96, 96, pixelArray);
我还添加了我在网上找到的这个辅助方法:
public Byte[] BufferFromImage(BitmapImage imageSource)
{
Stream stream = imageSource.StreamSource;
Byte[] buffer = null;
if (stream != null && stream.Length > 0)
{
using (BinaryReader br = new BinaryReader(stream))
{
buffer = br.ReadBytes((Int32)stream.Length);
}
}
return buffer;
}
问题是BitmapImage
不再有StreamSource
方法了。