使用win32api python捕获屏幕截图会返回黑色图像

时间:2019-12-16 05:09:45

标签: python winapi screenshot pywin32 win32gui

我使用以下代码示例捕获屏幕截图:

https://stackoverflow.com/a/3260811 https://stackoverflow.com/a/24352388/5858697

拍摄Firefox或chrome的屏幕截图时,它们返回空白的黑色图像。捕获记事本的屏幕截图效果很好。我对此进行了一些研究,我认为这是因为它们加速了GPU。其他屏幕截图库都可以使用,但是我需要使用它,以便即使当前不可见也可以捕获应用程序的屏幕截图。

有人解决了类似的问题吗?有人可以指出我正确的方向吗?谢谢。

1 个答案:

答案 0 :(得分:0)

基于@Barmak's previous answer,我将C ++代码转换为python,现在可以使用了。

import win32gui
import win32ui
import win32con
from ctypes import windll
from PIL import Image
import time
import ctypes

hwnd_target = 0x00480362 #Chrome handle be used for test 

left, top, right, bot = win32gui.GetWindowRect(hwnd_target)
w = right - left
h = bot - top

win32gui.SetForegroundWindow(hwnd_target)
time.sleep(1.0)

hdesktop = win32gui.GetDesktopWindow()
hwndDC = win32gui.GetWindowDC(hdesktop)
mfcDC  = win32ui.CreateDCFromHandle(hwndDC)
saveDC = mfcDC.CreateCompatibleDC()

saveBitMap = win32ui.CreateBitmap()
saveBitMap.CreateCompatibleBitmap(mfcDC, w, h)

saveDC.SelectObject(saveBitMap)

result = saveDC.BitBlt((0, 0), (w, h), mfcDC, (left, top), win32con.SRCCOPY)

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(hdesktop, hwndDC)

if result == None:
    #PrintWindow Succeeded
    im.save("test.png")

请注意:Firefox使用Windowless Controls

如果要使用Firefox,可能需要UI Automation

有关详细说明,请参阅@IInspectable's answer