程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> WPF bitmap轉bitmapimage 使用 CreateBitmapSourceFromHBitmap內存洩漏,wpfbitmapimage

WPF bitmap轉bitmapimage 使用 CreateBitmapSourceFromHBitmap內存洩漏,wpfbitmapimage

編輯:C#入門知識

WPF bitmap轉bitmapimage 使用 CreateBitmapSourceFromHBitmap內存洩漏,wpfbitmapimage


IntPtr f = bmp.GetHbitmap();
img.Source = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(f, IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());

這裡要是多次使用 不及時釋放內存就會爆炸~

解決辦法:

用windows下的GDI32.DLL類

使用辦法:

先引用system.runtime.serialzation類

如果解決方案配置是在Debug下面的話

把gdi32.dll放在bing\debug

然後新建一個類

  static  class Class1
    {
      [System.Runtime.InteropServices.DllImport("gdi32.dll")]
      public static extern bool DeleteObject(IntPtr o);
    }

然後每次在轉化以後 

  Class1.DeleteObject(f);

一下就好了

內存就不會爆炸了 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved