如何将转换位图转换为字节数组并将其保存到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
答案 0 :(得分:1)