SharpDX应用程序内存泄漏

本文关键字:泄漏 内存 应用程序 SharpDX | 更新日期: 2023-09-27 18:21:46

此代码每100毫秒运行一次。内存使用量一直在增加,直到达到1.5 GB,然后崩溃。

void takeScreenShot()
{
    Surface s;
    s = CaptureScreen(); 
    pictureBox1.Image = new Bitmap(Surface.ToStream(s, ImageFileFormat.Bmp));
    s.Dispose();
}
public Surface CaptureScreen()
{
    int width = Screen.PrimaryScreen.Bounds.Width;
    int height = Screen.PrimaryScreen.Bounds.Height;
    Device device = new Device(new Direct3D(), 0, DeviceType.Hardware, IntPtr.Zero, CreateFlags.HardwareVertexProcessing, new PresentParameters(width, height));
    DisplayMode disp = device.GetDisplayMode(0);
    Surface s = Surface.CreateOffscreenPlain(device, disp.Width, disp.Height, Format.A8R8G8B8, Pool.Scratch);
    device.GetFrontBufferData(0, s);
    return s;
} 

SharpDX应用程序内存泄漏

您每次都在创建一个新设备。

你应该只创建一次设备,在启动代码中创建一次,然后继续使用

此外,我怀疑Surface.ToStream()中存在内存泄漏,返回的流可能也需要处理。

       var stream = Surface.ToStream(s, ImageFileFormat.Bmp);
       pictureBox1.Image = new Bitmap(stream);
       stream.Dispose();

正如Hans Passant所提到的,Bitmap也需要处理。

您可以通过助手非常容易地调试SharpDX中的内存泄漏,从而对未发布的COM资源进行诊断。在应用程序开始时设置此变量:

SharpDX.Configuration.EnableObjectTracking = true;

当您的应用程序退出时,它将打印一份未正确释放堆栈的COM对象的报告。这背后的类是ObjectTracker。

可以调用ObjectTracker.ReportActiveObjects()在运行时打印当前使用的资源(即使使用堆栈跟踪)。