Answers for "python how to capture windows screenshot"

4

how to take screenshot using python

please check out my video also - https://www.youtube.com/watch?v=7Tr0mEQhc3M&t=2s
please subscribe my channel - https://bit.ly/2Me2CfB

# importing the ImageGrab function from PILLOW (PIL) Module
from PIL import ImageGrab

# to take the screenshot of your pc (Main Function)
screenshot = ImageGrab.grab()

# saving the screenshot in your pc (screenshot will be saved in the directory you are working)
screenshot.save()

# To open the screenshot in the default image viewer (Optional)
screenshot.show()
Posted by: Guest on July-09-2021
0

python screen capture a window

from win32gui import FindWindow, GetWindowRect
from PIL import ImageGrab
from PIL import Image
import numpy as np
import cv2

while True:
    window_handle = FindWindow(None, "MTGA")
    window_rect = GetWindowRect(window_handle)
    screen = np.array(ImageGrab.grab(bbox=(window_rect)))
    resized = cv2.resize(screen, (1280, 720), interpolation = cv2.INTER_AREA)
    im_rgb = cv2.cvtColor(resized, cv2.COLOR_BGR2RGB)
    cv2.imshow('Python Window', im_rgb)
    if cv2.waitKey(25) & 0xFF == ord('q'):
        cv2.destroyAllWindows()
        break
Posted by: Guest on April-28-2021

Code answers related to "python how to capture windows screenshot"

Python Answers by Framework

Browse Popular Code Answers by Language