2021年9月2日 星期四

使用 python 抓取螢幕截圖(多螢幕適用)

from PIL import ImageGrab

img = ImageGrab.grab(all_screens=True)
img.save("PIL_grab.png")