我正在尝试从相机捕获预览图像,然后通过 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());
}
DataOutputStream
在方法中创建out 的位置onCreate
:
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();
}
问题是,一些传输的图片是好的,但其中一些已经损坏。问题可能出在哪里?