如何捕获窗口照片(缩略图)



我想获取一个窗口的照片(缩略图),我已经在Windows操作系统中使用python获得了它的句柄(hwnd)。

从我在您的问题评论中发布的链接中,我能够获得一个示例,该示例可以缩略图我的 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')

相关内容

  • 没有找到相关文章

最新更新