当我尝试在我的 cam_CaptureImageAvailable 方法中使用 BitMapImage 时,我得到一个无效的跨线程访问,我尝试使用 Dispatcher 但它给了我一个无法访问关闭的流错误,System.ObjectDisposedException 未处理。
// Informs when full resolution picture has been taken, saves to local media library and isolated storage.
void cam_CaptureImageAvailable(object sender, Microsoft.Devices.ContentReadyEventArgs e)
{
string fileName = folderName+"\\MyImage" + savedCounter + ".jpg";
try
{ // Write message to the UI thread.
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
txtDebug.Text = "Captured image available, saving picture ," + fileName;
});
// Save picture to the library camera roll.
//library.SavePictureToCameraRoll(fileName, e.ImageStream);
// Write message to the UI thread.
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
//txtDebug.Text = "Picture has been saved.";
});
// Set the position of the stream back to start
e.ImageStream.Seek(0, SeekOrigin.Begin);
// Save picture as JPEG to isolated storage.
using (IsolatedStorageFile isStore = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream targetStream = isStore.OpenFile(fileName, FileMode.Create, FileAccess.Write))
{
// Initialize the buffer for 4KB disk pages.
byte[] readBuffer = new byte[4096];
int bytesRead = -1;
// Copy the image to isolated storage.
while ((bytesRead = e.ImageStream.Read(readBuffer, 0, readBuffer.Length)) > 0)
{
targetStream.Write(readBuffer, 0, bytesRead);
}
}
var bitmapImage = new BitmapImage();
bitmapImage.SetSource(e.ImageStream);
WriteableBitmap wb = new WriteableBitmap(bitmapImage);
IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
using (IsolatedStorageFileStream myFileStream = myStore.CreateFile(fileName))
{
wb.SaveJpeg(myFileStream, 10, 10, 0, 70);
}
}
}
finally
{
// Close image stream
e.ImageStream.Close();
}
}
这个也试过
Deployment.Current.Dispatcher.BeginInvoke(delegate()
{
var bitmapImage = new BitmapImage();
bitmapImage.SetSource(e.ImageStream);
WriteableBitmap wb = new WriteableBitmap(bitmapImage);
IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
using (IsolatedStorageFileStream myFileStream = myStore.CreateFile(fileName))
{
wb.SaveJpeg(myFileStream, 10, 10, 0, 70);//compressing image
}
});
任何人都可以帮助我,我将非常感谢。