我有:
WriteableBitmap bmp;
我基本上想将它保存到磁盘上的文件中,如下所示:
C:\bmp.png
我读了一些提到阅读的论坛:
bmp.Pixels
并将这些像素保存到Bitmap
,然后使用Bitmap.SaveImage()
功能。但是,我无法访问任何Pixels
。显然我的WriteableBitmap
没有任何名为Pixels
的属性。
我使用.NET Framework 4.0。
答案 0 :(得分:31)
使用WriteableBitmap的克隆并使用以下函数:
CreateThumbnail(filename, _frontBitmap.Clone());
...
void CreateThumbnail(string filename, BitmapSource image5)
{
if (filename != string.Empty)
{
using (FileStream stream5 = new FileStream(filename, FileMode.Create))
{
PngBitmapEncoder encoder5 = new PngBitmapEncoder();
encoder5.Frames.Add(BitmapFrame.Create(image5));
encoder5.Save(stream5);
}
}
}