通过TCP将JPEG NSData发送到Python服务器

时间:2014-08-31 20:46:18

标签: tcp jpeg twisted nsdata nsoutputstream

我有一个拥有iOS客户端的Python tcp服务器。它能够发送数据和接收,我遇到的唯一问题可能是编码。我试图通过TCP将JPEG发送到Python服务器并将数据写入服务器上的JPEG。 jpeg一直在腐败。

客户Obj-C代码:

[self.stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection
                                                           completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {

            NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
            UIImage *image = [[UIImage alloc] initWithData:imageData];
                                                               iv = [[UIImageView alloc] initWithImage:image];


                                                               [iv setFrame:[[self view]frame]];





                                                               ConnectionManager *netCon = [ConnectionManager alloc];
                                                               conMan = netCon;
                                                               [conMan initNetworkCommunication];



                                                               [conMan.outputStream write:(const uint8_t *)[imageData bytes] maxLength:[imageData length]];



        }];

这是python(扭曲的)服务器代码:

from twisted.internet.protocol import Factory, Protocol
from twisted.internet import reactor

class IphoneChat(Protocol):
    def connectionMade(self):
        self.factory.clients.append(self)
        print "clients are ", self.factory.clients

    def connectionLost(self, reason):
        self.factory.clients.remove(self)

    def dataReceived(self, data):
        file = open('test.jpeg','w')

        file.write(data)
        file.close()


factory = Factory()

factory.clients=[]


factory.protocol = IphoneChat
reactor.listenTCP(2000, factory)
print "Iphone Chat server started"
reactor.run()

1 个答案:

答案 0 :(得分:2)

TCP是面向流的协议。它没有消息(因此它没有稳定的消息边界)。 dataReceived被调用一些字节 - 至少有一个,但比你真正知道的还要多少。

您不能只将传递给dataReceived的内容视为完整的图像数据。它是图像数据的一些字节。将重复调用机会dataReceived,每次从图像数据中获取更多字节。您必须将传递给这些多个调用的数据重新组合成完整的图像数据。