我在python套接字上遇到图片问题。图像未完全发送出去。这就是它的收到方式
客户
elif data == 'screenshot':
screen = os.system("screencapture screen.jpg")
file = open('screen.jpg', 'rb')
prop = file.read()
file.close()
s.sendall( prop )
服务器
data = c.recv(999999999)
img = open('image.jpg', 'wb')
img.write( data )
正在发生的事情是原始文件是800 kb,然后写入的数据是300kb。有没有办法让整个图像显示,而不是图像的一半或20%。