我正在 Raspberry PI 上开发一个时间要求严格的应用程序,我需要通过网络发送图像。当我的图像被捕获时,我会这样做:
# pygame.camera.Camera captures images as a Surface
pygame.image.save(mySurface,'temp.jpeg')
_img = open('temp.jpeg','rb')
_out = _img.read()
_img.close()
_socket.sendall(_out)
这不是很有效。我希望能够将表面保存为内存中的图像并直接发送字节,而无需先将其保存到磁盘。
感谢您的任何建议。
编辑:电线的另一端是一个.NET 应用程序,需要字节