2

我想在 windows os 中使用 python 获取我已经拥有它的句柄(hwnd)的窗口的照片(缩略图)。

4

1 回答 1

2

我在您的问题评论中发布的链接中,我能够获得一个示例,该示例可以缩略图我的 python 解释器窗口。

from PIL import ImageGrab, Image
import win32gui

hwnd = 2622054 # My python intepreter window
thumbnailsize = 128, 128

# Set the current window to your window
win32gui.SetForegroundWindow(hwnd)
# Get the size of the window rect.
bbox = win32gui.GetWindowRect(hwnd)
# Grab the image using PIL and thumbnail.
img = ImageGrab.grab(bbox)
img.thumbnail(thumbnailsize, Image.ANTIALIAS)
# Save.
img.save('c:/test/test.png')
于 2012-12-19T05:28:48.500 回答