使用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模块的主要内容,如果未能解决你的问题,请参考以下文章

python 三种方式实现截屏

python 三种方式实现截屏(详解+完整代码)

Python 三种方法实现截图详解+完整代码

美白,磨皮,搞笑图片处理

Python:这有可能是最详细的PIL库基本概念文章了

[解决]OS X 下 Python 导入 PIL 中的 ImageGrab 错误