I've been trying to use the screenshot feature of pyautogui, and whenever I take a screenshot it only captures the top left corner of the screen. Even when I manually enter a larger region to screenshot, it just makes the rest black.
Example:
What could I do to fix this?
Code that made this image:
import pyautogui
import time
import sys
im = pyautogui.screenshot('board.png',region=(0,0, 2000, 1000))