我使用了filepicker从本地文件夹中选择了一张照片,并将该图像分配给了xaml页面中的图像控件。既然图像在那里,我想将它保存到我的sqlite数据库中的byte []字段。我已经尝试了很多搜索互联网的方法,但大多数涉及Windows 8.1 windows store app中不可用的命名空间(如System.Drawing)。你能建议一个方法吗?这是我用来将byte []数组转换为位图图像的方法。我只想要反过来说:
//this converts VehPhoto Byte[] array to BitMapImage file
private async Task LoadImageAsync()
{
using (InMemoryRandomAccessStream ms = new InMemoryRandomAccessStream())
{
// Writes the image byte array in an InMemoryRandomAccessStream
// that is needed to set the source of VehicleBitMap.
using (DataWriter writer = new DataWriter(ms.GetOutputStreamAt(0)))
{
writer.WriteBytes(vehphoto);
await writer.StoreAsync();
}
var image = new BitmapImage();
await image.SetSourceAsync(ms);
vehiclebitmap = image;
}
}
感谢您的帮助!
答案 0 :(得分:0)
我终于偶然发现了自己问题的答案。我突然意识到,只要我从文件加载它就可以将照片图像放入字节数组中。因此,在我使用filepicker选择照片后,在将其转换为BitMapImage以便在图像控件中使用之后,我使用此代码将其分配给我的数据库元素:
byte[] fileBytes = null;
using (IRandomAccessStreamWithContentType stream = await file.OpenReadAsync())
{
fileBytes = new byte[stream.Size];
using (DataReader reader = new DataReader(stream))
{
await reader.LoadAsync((uint)stream.Size);
reader.ReadBytes(fileBytes);
Vehicle.VehPhoto = fileBytes;
}
}
然后不需要将BitmapImage转换为byte [],只需要将文件转换为byte []。酵母!!!!