使用Python在Windows上获取屏幕截图?

问题描述 投票:0回答:8

我正在创建一个 Beta 测试人员报告模块,以便他们可以发送对我的软件的评论,但我希望可以选择在报告中包含屏幕截图。如何在 Windows 上使用 Python 截取屏幕截图?我在 Linux 上找到了几个例子,但在 Windows 上却没有太多运气。

python windows screenshot
8个回答
49
投票

另一种非常快的方法是 MSS 模块。它与其他解决方案的不同之处在于它仅使用

ctypes
标准模块,因此不需要很大的依赖性。它独立于操作系统,并且使用起来很简单:

from mss import mss

with mss() as sct:
    sct.shot()

然后找到包含第一个监视器的屏幕截图的

screenshot.png
文件。有很多可能的自定义,您可以使用
ScreenShot
对象和 OpenCV/Numpy/PIL/ 等..


31
投票

值得注意的是,ImageGrab 仅适用于 MSWindows。

为了跨平台兼容性,最好使用 wxPython 库。 http://wiki.wxpython.org/WorkingWithImages#A_Flexible_Screen_Capture_App

import wx
app = wx.App()  # Need to create an App instance before doing anything
screen = wx.ScreenDC()
size = screen.GetSize()
bmp = wx.Bitmap(size[0], size[1])
mem = wx.MemoryDC(bmp)
mem.Blit(0, 0, size[0], size[1], screen, 0, 0)
del mem  # Release bitmap
bmp.SaveFile('screenshot.png', wx.BITMAP_TYPE_PNG)

15
投票

您可以使用ImageGrab模块。 ImageGrab 适用于 Windows 和 macOS,您需要 PIL(Pillow)才能使用它。这是一个小例子:

from PIL import ImageGrab
snapshot = ImageGrab.grab()
save_path = "C:\\Users\\YourUser\\Desktop\\MySnapshot.jpg"
snapshot.save(save_path)

11
投票

对于 pyautogui 用户:

import pyautogui
screenshot = pyautogui.screenshot()

5
投票

截屏的一个简单方法是通过 Pygame。

 pygame.image.save(Surface, filename)

其中“Surface”是您要截取屏幕截图的表面,“filename”是您保存图像的文件路径、名称和类型。

您可以导出为 BMP、TGA、PNG 或 JPEG。从 Pygame 1.8 开始,PNG 和 JPEG 也可以使用。

如果未指定文件扩展名,它将默认为 .TGA 文件。

您甚至可以使用“os”库保存到特定的文件目录。

示例:

import os
import pygame
surface = pygame.display.set_mode((100, 100), 0, 32)
surface.fill((255, 255, 255))
pygame.draw.circle(surface, (0, 0, 0), (10, 10), 15, 0)
pygame.display.update()
pygame.image.save(surface, os.path.expanduser("~/Desktop/pic.png"))

这会将“表面”Surface 上的所有内容以 pic.png 的形式保存到用户桌面上


1
投票

如果您想捕捉特定正在运行的 Windows 应用程序,您必须通过循环系统中所有打开的窗口来获取句柄。

如果您可以从Python脚本打开这个应用程序,那就更容易了。 然后你可以将进程pid转换为窗口句柄。

另一个挑战是捕捉在特定监视器中运行的应用程序。我有 3 个显示器系统,我必须弄清楚如何捕捉显示器 2 和 3。

此示例将拍摄多个应用程序快照并将它们保存到 JPEG 文件中。

import wx

print(wx.version())
app=wx.App()  # Need to create an App instance before doing anything
dc=wx.Display.GetCount()
print(dc)
#e(0)
displays = (wx.Display(i) for i in range(wx.Display.GetCount()))
sizes = [display.GetGeometry().GetSize() for display in displays]

for (i,s) in enumerate(sizes):
    print("Monitor{} size is {}".format(i,s))   
screen = wx.ScreenDC()
#pprint(dir(screen))
size = screen.GetSize()

print("Width = {}".format(size[0]))
print("Heigh = {}".format(size[1]))

width=size[0]
height=size[1]
x,y,w,h =putty_rect

bmp = wx.Bitmap(w,h)
mem = wx.MemoryDC(bmp)

for i in range(98):
    if 1:
        #1-st display:

        #pprint(putty_rect)
        #e(0)

        mem.Blit(-x,-y,w+x,h+y, screen, 0,0)

    if 0:
        #2-nd display:
        mem.Blit(0, 0, x,y, screen, width,0)
    #e(0)

    if 0:
        #3-rd display:
        mem.Blit(0, 0, width, height, screen, width*2,0)

    bmp.SaveFile(os.path.join(home,"image_%s.jpg" % i), wx.BITMAP_TYPE_JPEG)    
    print (i)
    sleep(0.2)
del mem

详情这里


0
投票

首先,使用pip3安装PrtSc库。

 import PrtSc.PrtSc as Screen
 screenshot=PrtSc.PrtSc(True,'filename.png')

0
投票

我遇到了一些 python 截图问题,到目前为止,使用 shot-scraper 已经给出了最好的结果。

pip install shot-scraper

然后安装 Playwright

shot-scraper install

截图:

shot-scraper <URL>
© www.soinside.com 2019 - 2024. All rights reserved.