将位图转换为字节数组并将其保存到Sqlite

时间:2014-01-19 09:05:36

标签: c# sqlite bitmap

如何将转换位图转换为字节数组并将其保存到Sqlite。我使用c#和xaml

这是我的代码

BitmapSource image = new BitmapImage(new Uri("ms-appx:///Assets/BG.jpg", UriKind.Absolute));

using (MemoryStream ms = new MemoryStream())
{
     WriteableBitmap btmMap = new WriteableBitmap
     (image.PixelWidth, image.PixelHeight);

     // write an image into the stream
     image.Save(ms, ImageFormat.Jpeg); // error, Save and ImageFormat
}

“保存”错误:

'Windows.UI.Xaml.Media.Imaging.BitmapSource'不包含“保存”的定义,并且没有扩展方法“保存”接受类型为“Windows.UI.Xaml.Media.Imaging.BitmapSource”的第一个参数'可以找到(你错过了使用指令或汇编引用吗?)

ImageFormat错误:

The name 'ImageFormat' does not exist in the current context

1 个答案:

答案 0 :(得分:1)

一种方法可能是将BitmapImage转换为普通的Bitmap然后保存该流。

请参阅: Converting BitmapImage to Bitmap and vice versa

希望这有帮助