这要么很复杂,要么我真的很糟糕!
我正在使用AudioVideoCaptureDevice
并且我想创建视频的图像缩略图并将其保存到独立存储中。
到目前为止,我拥有以下内容:
private void SaveThumbnail()
{
var w = (int)_videoCaptureDevice.PreviewResolution.Width;
var h = (int)_videoCaptureDevice.PreviewResolution.Height;
var argbPx = new int[w * h];
Deployment.Current.Dispatcher.BeginInvoke(() => _videoCaptureDevice.GetPreviewBufferArgb(argbPx));
var wb = new WriteableBitmap(w, h);
argbPx.CopyTo(wb.Pixels, 0);
wb.Invalidate();
using (var isoStore = IsolatedStorageFile.GetUserStoreForApplication())
{
var fileName = _isoVideoFileName + ".jpg";
if (isoStore.FileExists(fileName))
isoStore.DeleteFile(fileName);
var file = isoStore.CreateFile(fileName);
wb.SaveJpeg(file, w, h, 0, 20);
file.Close();
}
}
因此,该GetPreviewBufferArgb()
方法用图像数据填充我的 int 数组(至少如文档所述)。我应该如何继续将这些像素保存到隔离存储中,以便以后加载它们?
上面的代码似乎不起作用,因为当我从 IsolatedStorage 打开图像时,它没有打开。
更新:现在我可以保存一些东西 - 不幸的是图像总是黑色的(不 - 我没有在模拟器上测试应用程序)!