0

当我用我的 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();
            }

那是对的吗?如何将画布保存到我的 sdcard 上的文件中(即将画布中的数据写入文件输出流)

4

1 回答 1

0

您将图像视图的 JPEG 和相机中的 JPEG 附加到一个文件中。

为每个文件创建一个单独的文件输出流,并将来自 Bitmap.compress() 和 onPictureTaken 数据数组的数据写入它们自己的流中。

如果要将两个图像组合成一个图像,则需要将数据数组解码为位图,然后使用 Canvas 将 ImageView 位图和相机捕获的位图以您的排列方式绘制到画布上想要,然后将其保存为单个 jpeg。

您不能简单地将两个压缩的 JPEG 比特流连接在一起;文件格式不能那样工作。

于 2013-02-06T00:14:08.247 回答