• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

python使用tcp传输图片数据

python 搞代码 4年前 (2022-01-07) 39次浏览 已收录 0个评论

这篇文章主要为大家详细介绍了python使用tcp传输图片数据,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了python使用tcp传输图片数据的具体代码,供大家参考,具体内容如下

数据包格式如下

客户端:

 import socket import sys HOST,PORT = "172.18.0.3",19984 def main(): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((HOST, PORT)) #包头标志 arrBuf = bytearray(b'\xff\xaa\xff\xaa') #以二进制方式读取图片 picData = open('1.jpg-600', 'rb') picBytes = picData.read() #图片大小 picSize = len(picBytes) #数据体长度 = guid大小(固定) + 图片大小 datalen = 64 + picSize #组合数据包 arrBuf += bytearray(datalen.to_bytes(4, byteorder='little')) guid = 23458283482894382928948 arrBuf += bytearray(guid.to_bytes(64, byteorder='little')) arrBuf += picBytes sock.sendall(arrBuf) sock.close() if __name__ == '__main__': main()

服务端:

 import socketserver import os import sys import time import threading ip_port=("172.18.0.3",19984) class MyServer(socketserver.BaseRequestHandler): def handle(self): print("conn is :",self.request) # conn print("addr is :",self.client_address) # addr while True: try: self.str = s

来源gaodai^.ma#com搞#代!码网

elf.request.recv(8) data = bytearray(self.str) headIndex = data.find(b'\xff\xaa\xff\xaa') print(headIndex) if headIndex == 0: allLen = int.from_bytes(data[headIndex+4:headIndex+8], byteorder='little') print("len is ", allLen) curSize = 0 allData = b'' while curSize

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持gaodaima搞代码网

以上就是python使用tcp传输图片数据的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:python使用tcp传输图片数据

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址