Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am scanning images and getting barcode and QR code value....

I am using ZBar library for scanning QR Code and barcode...

below is my code

   @Override
protected void onResume() {
    mCamera = getCameraInstance();
    flagImageSaved = false;
    if (mCamera != null) {
        beepManager.updatePrefs();
        /* Instance barcode scanner */
        scanner = new ImageScanner();
        scanner.setConfig(0, Config.X_DENSITY, 3);
        scanner.setConfig(0, Config.Y_DENSITY, 3);
        mPreview = new CameraPreview(this, mCamera, previewCb, autoFocusCB);
        FrameLayout preview = (FrameLayout) findViewById(R.id.cameraPreview);
        if (preview.getChildCount() > 0) {
            preview.removeAllViews();
        }
        preview.addView(mPreview);

        manuName = android.os.Build.MANUFACTURER.toLowerCase();
        mCamera.setPreviewCallback(previewCb);
        mCamera.startPreview();
        previewing = true;
        mCamera.autoFocus(autoFocusCB);
    }
    super.onResume();
}

for getCameraInstace

    public static Camera getCameraInstance() {
    Camera c = null;
    try {
        c = Camera.open();
    } catch (Exception e) {
    }
    return c;
}

Now i am using previewCb callback method and in that i am saving image and goes to new Activity which shows the result....

   PreviewCallback previewCb = new PreviewCallback() {
    public void onPreviewFrame(byte[] data, Camera camera) {

        Camera.Parameters parameters = camera.getParameters();
        Size size = parameters.getPreviewSize();
        Image barcode = new Image(size.width, size.height, "Y800");
        barcode.setData(data);

        int result = scanner.scanImage(barcode);

        if (result != 0) {
            previewing = false;


            mCamera.takePicture(null, null, new PictureCallback() {

                @Override
                public void onPictureTaken(byte[] data, Camera camera) {

                    try {
        File(Environment.getExternalStorageDirectory() + File.separator + "test.jpg");
                        f.createNewFile();
                        FileOutputStream fo = new FileOutputStream(f);
                        fo.write(data);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            });
            mCamera.setPreviewCallback(null);
            mCamera.stopPreview();
    Intent intent = new Intent(CameraTestActivity.this, Result.class);
    startActivity(intent);

Now the problem is when i come back with destroying Result Activity..... by pressing back button the onResume method will be called and in that i am getting mCamera = NULL also in SDCARD image is not saved

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.