0

私はWP7の開発者です。私は次の機能を使用していました:

public BitmapImage SetImageSource(byte[] byteArray)
{
    BitmapImage bitmap = new BitmapImage();          
    try
    {
        MemoryStream ms = new MemoryStream(byteArray, 0, byteArray.Length);
        bitmap.SetSource(ms);
        ms.Flush();
        ms.Dispose();
    }

    catch (Exception ex)
    {
       MessageBox.Show(ex.Message);
    }
    return bitmap;
}

byteArray をビットマップ イメージに書き込みます。ただし、場合によっては、次のように例外が発生します。

System.OutOfMemoryException was unhandled
Message=OutOfMemoryException
StackTrace:
       at MS.Internal.FrameworkCallbacks.NotifyManagedDebuggerOnNativeOOM()
       at MS.Internal.XcpImports.BitmapSource_SetSourceNative(IntPtr bitmapSource, CValue& byteStream)
       at MS.Internal.XcpImports.BitmapSource_SetSource(BitmapSource bitmapSource, CValue& byteStream)
       at System.Windows.Media.Imaging.BitmapSource.SetSourceInternal(Stream streamSource)
       at System.Windows.Media.Imaging.BitmapImage.SetSourceInternal(Stream streamSource)
       at System.Windows.Media.Imaging.BitmapSource.SetSource(Stream streamSource)
       at FileEncrypt.ListImage.SetImageSource(Byte[] byteArray)
       at FileEncrypt.ListImage.LoadFiles()
       at FileEncrypt.ListImage.ListImage_Loaded(Object sender, RoutedEventArgs e)
       at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
       at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName)

を使用しtry..catch blockて例外をキャッチしましたが、例外はキャッチされません。

4

1 に答える 1

0

私はこの機能を作り、このようにしています

  private BitmapSource ConvertPic(Stream Image)
        {
            BitmapSource ContactImage;
            if (Image == null)
            {
                return ContactImage = null;
            }
            var bmp = new BitmapImage();
            bmp.SetSource(Image);
            ContactImage = bmp;
            return ContactImage;
        }
于 2012-06-18T07:50:03.463 に答える