主頁 > 知識庫 > python使用tcp傳輸圖片數(shù)據(jù)

python使用tcp傳輸圖片數(shù)據(jù)

熱門標簽:百度地圖標注位置怎么修改 大連crm外呼系統(tǒng) 梅州外呼業(yè)務(wù)系統(tǒng) 地圖標注視頻廣告 無錫客服外呼系統(tǒng)一般多少錢 高德地圖標注是免費的嗎 老人電話機器人 洪澤縣地圖標注 北京電信外呼系統(tǒng)靠譜嗎

本文實例為大家分享了python使用tcp傳輸圖片數(shù)據(jù)的具體代碼,供大家參考,具體內(nèi)容如下

數(shù)據(jù)包格式如下

客戶端:

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', 'rb')
    picBytes = picData.read()
    
    #圖片大小
    picSize = len(picBytes)
    
    #數(shù)據(jù)體長度 = guid大小(固定) + 圖片大小
    datalen = 64 + picSize
    
    #組合數(shù)據(jù)包
    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()

服務(wù)端:

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 = self.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  allLen:
                        data = self.request.recv(1024)
                        allData += data
                        curSize += len(data)
 
                    print("recv data len is ", len(allData))
                    #接收到的數(shù)據(jù),前64字節(jié)是guid,后面的是圖片數(shù)據(jù)
                    arrGuid = allData[0:64]
                    #去除guid末尾的0
                    tail = arrGuid.find(b'\x00')
                    arrGuid = arrGuid[0:tail]
                    strGuid = str(int.from_bytes(arrGuid, byteorder = 'little')) #for test
                    
                    print("-------------request guid is ", strGuid)
                    imgData = allData[64:]
                    strImgFile = "2.jpg"
                    print("img file name is ", strImgFile)
 
                    #將圖片數(shù)據(jù)保存到本地文件
                    with open(strImgFile, 'wb') as f:
                        f.write(imgData)
                        f.close()
                        
                    break
            except Exception as e:
                print(e)
                break
 
 
if __name__ == "__main__":
    s = socketserver.ThreadingTCPServer(ip_port, MyServer)
    print("start listen")
    s.serve_forever()

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • python 中Arduino串口傳輸數(shù)據(jù)到電腦并保存至excel表格
  • 對python中基于tcp協(xié)議的通信(數(shù)據(jù)傳輸)實例講解
  • 在python環(huán)境下運用kafka對數(shù)據(jù)進行實時傳輸?shù)姆椒?/li>
  • 使用python實現(xiàn)http及ftp服務(wù)進行數(shù)據(jù)傳輸?shù)姆椒?/li>
  • Python爬蟲抓取手機APP的傳輸數(shù)據(jù)
  • python網(wǎng)絡(luò)編程之數(shù)據(jù)傳輸UDP實例分析
  • python實現(xiàn)udp數(shù)據(jù)報傳輸?shù)姆椒?/li>

標簽:安慶 洛陽 泉州 清遠 長春 怒江 岳陽 吉林

巨人網(wǎng)絡(luò)通訊聲明:本文標題《python使用tcp傳輸圖片數(shù)據(jù)》,本文關(guān)鍵詞  python,使用,tcp,傳輸,圖片,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python使用tcp傳輸圖片數(shù)據(jù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于python使用tcp傳輸圖片數(shù)據(jù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章