我在 python 中使用 mss 模块来截取整个屏幕的截图。我已将屏幕分成单独的块,并且正在截取这些特定块的屏幕截图。在循环中执行此操作需要很长时间,并且时间会随着块数量的增加而增加。
这些是 5 块 1920x1080 屏幕:
[{'top': 0, 'left': 0, 'width': 1920, 'height': 216}, {'top': 216, 'left': 0, 'width': 1920, 'height': 216}, {'top': 432, 'left': 0, 'width': 1920, 'height': 216}, {'top': 648, 'left': 0, 'width': 1920, 'height': 216}, {'top': 864, 'left': 0, 'width': 1920, 'height': 216}]
我使用多线程来做到这一点,但它会产生一个模糊的图像,并且只截取一些块而不是全部的屏幕截图(比如一些会很清晰,而另一些会是黑色的)。
我在无限循环中完成所有这些并将图像发送到服务器。
def main(block):
image = sct.grab(block).rgb
# send image to server
with mss.mss() as sct:
with concurrent.futures.ThreadPoolExecutor() as executor:
executor.map(main, blocks)
上面的代码产生了错误的图像(图像的某些块只是黑色)所以我尝试这样做:
def threaded(func, args):
threads = []
for arg in args:
thread = threading.Thread(target=func, args=(arg[0],arg[1],))
threads.append(thread)
thread.start()
for thread in threads:
thread.join()
def main(block, sct):
with threading.Lock():
image = sct.grab(block).rgb
image = sct.grab(block).rgb
# send image to server
with mss.mss() as sct:
threaded(main, zip(blocks, [sct for i in range(len(blocks))]))
上面的代码给出了这个错误:
Exception in thread Thread-165:
Traceback (most recent call last):
File "C:\Users\user\AppData\Local\Programs\Python\Python37\lib\threading.py", line 926, in _bootstrap_inner
self.run()
File "C:\Users\user\AppData\Local\Programs\Python\Python37\lib\threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "client.py", line 31, in main
image = sct.grab(block).rgb
File "C:\Users\user\AppData\Local\Programs\Python\Python37\lib\site-packages\mss\windows.py", line 301, in grab
raise ScreenShotError("gdi32.GetDIBits() failed.")
mss.exception.ScreenShotError: gdi32.GetDIBits() failed.
(这是一个无限循环,这就是线程数超过 165 的原因)
请帮助我如何使用多线程截屏。