Python win32gui应用程序窗口闪烁

时间:2016-12-16 02:42:28

标签: python win32gui

在拍摄某个应用程序窗口的屏幕截图时,我遇到了win32gui的问题。

我的脚本(下面的代码)截取窗口的屏幕截图进行分析。对于某些窗口它可以很好地工作,但我刚刚遇到一个应用程序,当我让我的脚本运行窗口时它需要截屏来使窗口闪烁。 (我一直在整个窗口看到白色闪光)

任何人都曾经历过它并有解决方案吗?

def getImage(self,hwnd = None):
    if hwnd == None:
        hwnd = self.hwnd
    self.whereIsWindow(hwnd)

    left, top, right, bot = win32gui.GetWindowRect(hwnd)

    w = right - left
    h = bot - top
    self.width = w
    self.height = h
    hwndDC = win32gui.GetWindowDC(hwnd)
    mfcDC = win32ui.CreateDCFromHandle(hwndDC)
    saveDC = mfcDC.CreateCompatibleDC()
    saveBitMap = win32ui.CreateBitmap()
    saveBitMap.CreateCompatibleBitmap(mfcDC, w, h)
    saveDC.SelectObject(saveBitMap)

    result = windll.user32.PrintWindow(hwnd, saveDC.GetSafeHdc(), 0)
    bmpinfo = saveBitMap.GetInfo()
    bmpstr = saveBitMap.GetBitmapBits(True)

    im = Image.frombuffer(
        'RGB',
        (bmpinfo['bmWidth'], bmpinfo['bmHeight']),
        bmpstr, 'raw', 'BGRX', 0, 1)

    win32gui.DeleteObject(saveBitMap.GetHandle())
    saveDC.DeleteDC()
    mfcDC.DeleteDC()
    win32gui.ReleaseDC(hwnd, hwndDC)

我知道罪魁祸首是最后5行,如果我发表评论它会停止闪烁,但它占用的所有内存都不是一个选项。

1 个答案:

答案 0 :(得分:0)

我最终在循环中放了更多延迟,根本没有闪烁。