在我的应用程序中,我能够读取帧缓冲区数据,但我无法打开图像文件,我不知道为什么,但通过搜索我知道它是原始格式。有人可以告诉我如何将这种原始数据格式打开为人类可读的图像格式我获取原始图像文件的代码如下
Process sh = Runtime.getRuntime().exec("su", null,null);
OutputStream os = sh.getOutputStream();
os.write(("/system/bin/screencap -p " + ss.getAbsolutePath()).getBytes("ASCII"));
os.flush();
os.close();
sh.waitFor();
提前致谢