图片从Android传输到python套接字问题

时间:2019-02-04 19:03:01

标签: java android python android-studio

我正在尝试将图像从 android 客户端传输到 python 服务器,但是我有一个问题,图像发送成功,但是尺寸,图像有一些变化收到的像是:

Example

从6Mb到60KB!
我的 Java (客户端)如下所示:

ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bos);
bos.flush();
byte[] array = bos.toByteArray();

OutputStream out = photoSocket.getOutputStream();
DataOutputStream dos = new DataOutputStream(out);

dos.writeInt(array.length);
dos.write(array);

dos.flush();
dos.close();

photoSocket.close();

和服务器代码 Python

import socket
import struct
address = ("xxx.xxx.x.x", 9200)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(address)
s.listen(1000)


client, addr = s.accept()
print('got connected from', addr)

buf = b''
while len(buf)<4:
buf += client.recv(4-len(buf))
size = struct.unpack('!i', buf)
print("receiving %s bytes" % size)

with open('tst.jpg', 'wb') as img:
    while True:
        data = client.recv(1024)
        if not data:
            break
        img.write(data)
print('received, yay!')

client.close()

1 个答案:

答案 0 :(得分:0)

使用方法将图像转换为字节使得必须在此行中使用Eigen::Ref<typename T::Base, Options, Eigen::Stride<0, 0> >::rows() 压缩

bitmap.compress

尝试将此方法更改为:

bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bos);

我希望这会有所帮助。