gpt4 book ai didi

Python截取屏幕截图并将其保存到缓冲区

转载 作者:太空宇宙 更新时间:2023-11-03 22:41:02 26 4
gpt4 key购买 nike

我想截取屏幕截图并将其作为照片(X.jpg) 保存到缓冲区,稍后我可以使用cv2(opencv)从缓冲区中读取相同的图像。
我的行为如下:

编辑我的代码:

from PIL import ImageGrab
from io import BytesIO

ii = ImageGrab.grab()
with BytesIO() as output:
ii.save(output,format="JPEG")# This line has an error
cam = output.getvalue()
result, frame = cv2.imencode('.jpg', cam, encode_param)

我得到这个错误:

TypeError: img is not a numpy array, neither a scalar

谢谢

最佳答案

这是一个演示:

from PIL import ImageGrab
from io import BytesIO
import numpy as np
import cv2

## (1) Grab the rgb frame as PIL.Image
ii = ImageGrab.grab()
print(type(ii)) # <class 'PIL.Image.Image'>

## (2) Convert PIL.Image to np.array
rgb = np.array(ii)
print(type(ii)) # <class 'numpy.ndarray'>

## (3) Convert into BGR and display
bgr = cv2.cvtColor(rgb, cv2.COLOR_RGB2BGR)
cv2.imshow("frame", bgr)
cv2.waitKey()
cv2.destroyAllWindows()

关于Python截取屏幕截图并将其保存到缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53820369/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com