当我使用Android相机拍照时,屏幕上会出现一张我想用照片保存的图片(imageview3
)。
这是我的onPictureTaken
方法
public void onPictureTaken(byte[] data, Camera camera) {
File imagesFolder = new File(Environment.getExternalStorageDirectory(), "/Ker");
imagesFolder.mkdirs();
String fileName = "Ker_.jpg";
output = new File(imagesFolder, fileName);
ImageView view = (ImageView) gameactivity.findViewById(R.id.imageView3);
view.setDrawingCacheEnabled(true);
Bitmap b = view.getDrawingCache();
FileOutputStream fos = null;
try {
fos = new FileOutputStream(output);
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
b.compress(CompressFormat.JPEG, 95, fos);
try {
fos.write(data);
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
camera.stopPreview();
}
当我打开文件夹时,保存的图片只是带有黑色背景的imageview3
。为什么没有保存真实的摄像机视图?
修改 我也在尝试使用画布:
output = new File(imagesFolder, fileName);
ImageView view = (ImageView) gameactivity.findViewById(R.id.imageView3);
view.setDrawingCacheEnabled(true);
Bitmap b = view.getDrawingCache();
FileOutputStream fos = null;
try {
fos = new FileOutputStream(output);
fos.write(data);
fos.close();
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
FileOutputStream fos2 = null;
b.compress(CompressFormat.JPEG, 95, fos2);
try {
Bitmap bitmap = BitmapFactory.decodeFileDescriptor(fos.getFD());
Bitmap bitmap2 = BitmapFactory.decodeFileDescriptor(fos2.getFD());
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(bitmap2, null, null);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
这是对的吗?如何将画布保存到我的SD卡上的文件中(即从fileoutputstream上的画布写入数据)
答案 0 :(得分:0)
您将图像视图的JPEG和相机中的JPEG附加到单个文件中。
为每个文件创建单独的文件输出流,并将Bitmap.compress()和onPictureTaken数据数据中的数据写入自己的流中。
如果您希望将两个图像合并为一个图像,则需要将数据数组解码为Bitmap,然后使用Canvas将ImageView位图和相机捕获的Bitmap绘制到画布上你想要的安排,然后将其保存为单个jpeg。
您不能简单地将两个压缩的JPEG比特流连接在一起;文件格式不起作用。