linux 中的 ImageGrab 替代方案

ImageGrab alternative in linux

我正在学习这个与屏幕交互的教程,但是在 Windows OS 完成,因为 ImageGrab 在 linux

中不可用
import numpy as np
from PIL import ImageGrab
import cv2
import time

def screen_record():
    last_time = time.time()
    while(True):
        # 800x600 windowed mode
        printscreen =  np.array(ImageGrab.grab(bbox=(0,40,800,640)))
        print('loop took {} seconds'.format(time.time()-last_time))
        last_time = time.time()
        cv2.imshow('window',cv2.cvtColor(printscreen, cv2.COLOR_BGR2RGB))
        if cv2.waitKey(25) & 0xFF == ord('q'):
            cv2.destroyAllWindows()
            break

是否有 ImageGrab 的替代方案或更好地切换 OS?

使用pyscreenshot 库。它是 linux 系统的 ImageGrab 替代品。

import pyscreenshot as ImageGrab
im = ImageGrab.grab()
im2 = np.asanyarray(im)

希望这对您的代码有效。