在Linux中的ImageGrab替代品

时间:2017-04-20 13:19:34

标签: python pillow

我正在关注本教程,该教程与屏幕交互,但是已经为Windows操作系统完成,因为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有替代方案,还是更好地切换操作系统?

1 个答案:

答案 0 :(得分:8)

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

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

希望这适用于您的代码。