Windows Phone 8位图分配崩溃了我的相机应用程序中的所有内容

时间:2014-03-26 14:06:51

标签: c# windows-phone-8

我的Windows Phone 8应用程序存在奇怪的内存分配问题。

我想要实现的目标非常简单,拍照,将其保存到隔离存储中,然后将其添加到我的datacontext中的图片集中。

申请的背景是我约会期间我拍照,然后当我在我的应用内日历中回到我的预约时,我会看到与约会相关的所有照片。

我有三个页面,一个日历页面,当我点击预约时,我会看到预约的详细视图,并在其中我有一个按钮将我发送到相机应用程序(我的,不是来自的电话)。以下代码位于我的camera.xaml.cs文件中。

这是错误的代码,在相机页面中:

 public void cam_CaptureThumbnailAvailable(object sender, ContentReadyEventArgs e)
    {
        string fileName;
        string imageName = "PHOTO_" +
                            DateTime.Now.ToString("yyyy-dd-MM-hh-mm") +
                            "_" +
                            _savedcounter +
                            "_th.jpg";

        if ((App.Current as App).CurrentAppointment != null
            &&
           !string.IsNullOrEmpty((App.Current as App).CurrentAppointment.Reference))
        {
            fileName = (App.Current as App).CurrentAppointment.Reference +
                        "\\" +
                        imageName;

        }
        else
        {
            fileName = _savedcounter + "_th.jpg";

        }

        try
        {


            //Making sure I'm at the beginning of the stream
            e.ImageStream.Seek(0, SeekOrigin.Begin);

以下行使程序崩溃:

BitmapImage bi = new BitmapImage(); //This line.
bi.SetSource(e.ImageStream);
            WriteableBitmap wb = new WriteableBitmap(bi);
            int index = (App.Current as App).CurrentAppointment.Pictures.Count - 1;


            MyPicture newPic = new MyPicture(wb,
                                                 imageName,
                                                 index,
                                                 false
                                                    );
            e.ImageStream.Seek(0, SeekOrigin.Begin);

其余代码工作正常(如果我评论上述说明,则不会崩溃。

            // Save thumbnail as JPEG to the local folder.
            using (IsolatedStorageFile isoStore = 
                            IsolatedStorageFile.GetUserStoreForApplication())
            {

                using (IsolatedStorageFileStream targetStream =
                                                isoStore.OpenFile(
                                                fileName,
                                                FileMode.Create,
                                                FileAccess.Write
                                                )
                      )
                {
                    // Initialize the buffer for 4KB disk pages.
                    byte[] readBuffer = new byte[4096];
                    int bytesRead = -1;

                    // Copy the thumbnail to the local folder. 
                    while ((bytesRead = e.ImageStream.Read(readBuffer, 0, readBuffer.Length)) > 0)
                    {
                        targetStream.Write(readBuffer, 0, bytesRead);
                    }

                }
            }


        }
        finally
        {
            // Close image stream
            e.ImageStream.Close();

        }

老实说,我不知道为什么会崩溃......很乐意接受任何建议。

1 个答案:

答案 0 :(得分:0)

很抱歉没有回复的帖子,但我想出来了。

这是一个线程问题,我的位图创建在UI线程中。通过使用Task.Run(()=> bitmap_creation)一切正常。