Android压缩和发送图像通过tcp

本文关键字:tcp 图像 压缩 Android | 更新日期: 2023-09-27 17:49:53

我正在尝试从相机捕获预览图像,然后通过wifi将其发送到我的电脑。

步骤如下:

在手机上:开始相机预览,然后压缩并通过tcp连接发送。在我的电脑上:接收压缩数据并保存照片。

我在移动端使用这个代码:

try {           
    ByteArrayOutputStream outstr = new ByteArrayOutputStream();
    Camera.Parameters parameters = camera.getParameters();
    Size size = parameters.getPreviewSize();
    YuvImage image = new YuvImage(data, parameters.getPreviewFormat(), size.width, size.height, null);
    image.compressToJpeg(new Rect(0, 0, image.getWidth(), image.getHeight()), 100, outstr);
    out.writeBytes("DATA|" + outstr.size() + "'n");
    out.flush();
    out.write(outstr.toByteArray());
    out.flush();
    } catch (IOException e) {
        t.append("ER: " + e.getMessage());
    }

Where out is DataOutputStream created in onCreate method:

tcp = new Socket("192.168.0.12", 6996);         
in = new BufferedReader(new InputStreamReader(tcp.getInputStream()));
out = new DataOutputStream(tcp.getOutputStream());

然后在我的计算机上使用以下代码:

    StreamReader sr = new StreamReader(client.GetStream());
    string line = sr.ReadLine();
    if(line.StartsWith("DATA"))
    {
        piccount++;
        int size = Convert.ToInt32(line.Substring(5));
        Console.WriteLine("PHOTO, SIZE: " + size + ", #: " + piccount);
        byte[] data = new byte[size];
        client.GetStream().Read(data, 0, size);
        FileStream fs = System.IO.File.Create("C:/Users/M/photo"+piccount+".jpeg"); 
        fs.Write(data, 0, data.Length);
        fs.Flush();
        fs.Close();
    }

问题是有些传输的图片是可以的,但是有些是损坏的。问题出在哪里?

Android压缩和发送图像通过tcp

问题在这一行client.GetStream().Read(data, 0, size);Stream.Read不能确保它将完全读取size字节。您应该检查它的返回值并继续读取,直到读取所有字节。

http://msdn.microsoft.com/en-us/library/system.io.stream.read.aspx

读取到缓冲区的总字节数。如果当前没有那么多字节可用,此值可以小于请求的字节数,如果已到达流的末端,则为零(0)。

如果你的意图是读取整个流,你可以使用下面的代码:

using (FileStream fs = System.IO.File.Create("C:/Users/M/photo" + piccount + ".jpeg"))
{
    client.GetStream().CopyTo(fs);
}