我想通过不和谐的 webhook 发送屏幕截图。我为此使用了dhooks模块。要发送文件,我需要一个“类文件对象”,所以我想获得一个类文件对象,而无需将屏幕截图存储为文件。知道怎么做吗?
问问题
50 次
1 回答
0
我刚刚在文档中添加了一个示例:
import mss
import mss.tools
with mss.mss() as sct:
# The monitor or screen part to capture
monitor = sct.monitors[1] # or a region
# Grab the data
sct_img = sct.grab(monitor)
# Generate the PNG
png = mss.tools.to_png(sct_img.rgb, sct_img.size)
于 2021-12-17T11:27:30.980 回答