“Как сделать скриншот с помощью Python” Ответ

Python сделать скриншот

import pyautogui

myScreenshot = pyautogui.screenshot()
myScreenshot.save(r'Path to save screenshot\file name.png')
Purple Team

Как сделать скриншот с помощью Python

import pyautogui
screenshot = pyautogui.screenshot()
screenshot.save("FilePathwhereyouwantToSave\\FileName.FileFormat")
Excited Emu

Сделайте снимок экрана определенной части экрана Python

import mss
import mss.tools


with mss.mss() as sct:
    # The screen part to capture
    monitor = {"top": 160, "left": 160, "width": 160, "height": 135}
    output = "sct-{top}x{left}_{width}x{height}.png".format(**monitor)

    # Grab the data
    sct_img = sct.grab(monitor)

    # Save to the picture file
    mss.tools.to_png(sct_img.rgb, sct_img.size, output=output)
    print(output)
Mardax

Сделайте скриншот веб -сайта Python

Mac: webkit2png 
Linux+KDE: khtml2png. 
Windows: webscreenshot
Real Raccoon

Ответы похожие на “Как сделать скриншот с помощью Python”

Вопросы похожие на “Как сделать скриншот с помощью Python”

Больше похожих ответов на “Как сделать скриншот с помощью Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования