我想用理想的应用程序屏幕做一个截图(但首先,整个屏幕的截图就可以了)。
我努力了
from lackey import *
notepad = App('notepad.exe')
notepad.open()
focusWindow = notepad.focusedWindow()
s = Screen(0)
r = s.capture()
with open("toto.bmp", "wb") as f:
f.write(r)
图片无法打开,因为该函数capture
返回一个numpy.ndarray
.
我也尝试执行以下操作,但结果是一样的:
r = Screen.capture(focusWindow)
谁知道怎么截图?
谢谢