使用PIL的ImageGrab模块
Posted liyanyan665
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PIL的ImageGrab模块相关的知识,希望对你有一定的参考价值。
import time
from PIL import ImageGrab
import numpy as np
import cv2
beg = time.time()
debug = False
# img = ImageGrab.grab(bbox=(250, 161, 1141, 610))
img = ImageGrab.grab()
end = time.time()
print(‘time:‘,end - beg)
img.show()
img.save("screen.jpg")
# PIL image to OpenCV image
im = np.array(img)
cv2.imshow(‘cv image‘, im)
cv2.waitKey(http://www.my516.com/heimitao/)
# OpenCV image to PIL image
im_pil = PIL.Image.fromarray(im)
im_pil.show()
以上是关于使用PIL的ImageGrab模块的主要内容,如果未能解决你的问题,请参考以下文章