Android进阶

Android 自定义相机 识别身份证(下)

2018-05-07  本文已影响392人  葛糖糖

      上一篇文章Android 自定义相机 识别身份证(上)介绍自定义相机的一些相关技术和步骤,这篇文章主要把代码简单的介绍一下.具体可以去看我源码,已分享到GitHub上去了.

自定义SurfaceView

      通过自定义SurfaceView来实现预览界面,并实现了SurfaceHolder.Callback这个接口,因此我们可以把相机实例化、预览和释放相机的方法都放在这这个自定义SurfaceView里面,这样在页面中只需要调用一个拍照方法就可以了.
      首先是重写的三个方法:

public void surfaceCreated(SurfaceHolder holder) {
    mCamera = CamParaUtil.openCamera();
    if (mCamera != null) {
        startPreview(holder);
    }
}

public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
   //不加这句的话相机拍照返回出现卡死的情况
    mCamera.stopPreview();
    startPreview(holder);
}

public void surfaceDestroyed(SurfaceHolder holder) {
    //回收释放资源
    release();
}

      在startPreview()中我们需要设置预览角度和获取拍摄的最佳大小,具体原因在上篇文章中都有说明.

private void startPreview( SurfaceHolder holder) {
    try {
        mCamera.setPreviewDisplay(holder);
        Camera.Parameters parameters = mCamera.getParameters();
        if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
            //竖屏拍照时,需要设置旋转90度,否者看到的相机预览方向和界面方向不相同
            mCamera.setDisplayOrientation(90);
            parameters.setRotation(90);
        } else {
            mCamera.setDisplayOrientation(0);
            parameters.setRotation(0);
        }
        Camera.Size bestSize = CamParaUtil.getBestSize(parameters.getSupportedPreviewSizes());
        if (bestSize != null) {
            parameters.setPreviewSize(bestSize.width, bestSize.height);
            parameters.setPictureSize(bestSize.width, bestSize.height);
        } else {
            parameters.setPreviewSize(1920, 1080);
            parameters.setPictureSize(1920, 1080);
        }
        mCamera.setParameters(parameters);
        mCamera.startPreview();
        focus();
    } catch (Exception e) {
    
    }
}

      剩下的就是自动聚焦和释放相机资源,因为代码比较简单,这里就不在粘贴.

拍照返回

      在Activity 调用拍照方法,拍照完成之后,会对照片按比例做裁剪,实现预览多大就拍出多大的照片,把照片存储到本地并把存储路径回传给页面,这样就能显示出拍出的照片.

 private void takePhoto() {
    optionView.setVisibility(View.GONE);
    customCameraPreview.setEnabled(false);
    customCameraPreview.takePhoto(new Camera.PictureCallback() {
        public void onPictureTaken(final byte[] data, final Camera camera) {
            //子线程处理图片,防止ANR
            new Thread(new Runnable() {
                @Override
                public void run() {
                    Bitmap bitmap = null;
                    if (data != null) {
                        bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
                        camera.stopPreview();
                    }
                    if (bitmap != null) {
                        //计算裁剪位置
                        float left = ((float) containerView.getLeft() - (float) customCameraPreview.getLeft()) / (float) customCameraPreview.getWidth();
                        float top = (float) cropView.getTop() / (float) customCameraPreview.getHeight();
                        float right = (float) containerView.getRight() / (float) customCameraPreview.getWidth();
                        float bottom = (float) cropView.getBottom() / (float) customCameraPreview.getHeight();

                        //裁剪及保存到文件
                        Bitmap resBitmap = Bitmap.createBitmap(bitmap,
                                (int) (left * (float) bitmap.getWidth()),
                                (int) (top * (float) bitmap.getHeight()),
                                (int) ((right - left) * (float) bitmap.getWidth()),
                                (int) ((bottom - top) * (float) bitmap.getHeight()));

                        FileUtil.saveBitmap(resBitmap);

                        if (!bitmap.isRecycled()) {
                            bitmap.recycle();
                        }
                        if (!resBitmap.isRecycled()) {
                            resBitmap.recycle();
                        }

                        //拍照完成,返回对应图片路径
                        Intent intent = new Intent();
                        intent.putExtra("result", FileUtil.getImgPath());
                        setResult(RESULT_OK, intent);
                        finish();
                    }

                    return;
                }
            }).start();
        }
    });
}

保存文件

      剩下的就是保存照片,并返回路径.

/**
 * 保存Bitmap到sdcard
 *
 * @param b 得到的图片
 */
public static void saveBitmap(Bitmap b) {
    String path = initPath();
    long dataTake = System.currentTimeMillis();
    imgPath = path + "/" + dataTake + ".jpg";
    try {
        FileOutputStream fout = new FileOutputStream(imgPath);
        BufferedOutputStream bos = new BufferedOutputStream(fout);
        b.compress(Bitmap.CompressFormat.JPEG, 100, bos);
        bos.flush();
        bos.close();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

/**
 * @return 保存到sd卡的图片路径
 */
public static String getImgPath() {
    return imgPath;
}

源码地址

上一篇下一篇

猜你喜欢

热点阅读