Out of Memory from capuring screenshots

后端 未结 2 1326
挽巷
挽巷 2021-01-15 05:21

Hello there I have a problem. I have a setup to capture Screenshots of my WebBrowser control:

public static class Utilities
{
    public const int SRCCOPY =          


        
2条回答
  •  無奈伤痛
    2021-01-15 06:07

    The garbage collector will clean up after you, but it can't get the job done properly for the Image class. Which is a very small managed wrapper class around a big pile of unmanaged memory that stores the pixel data of an image. You will run out of memory before you've created enough Image objects to trigger a GC.

    Explicitly disposing the old images is required.

提交回复
热议问题