Decoding a QR code in an Android application?

2019-03-17 09:59发布

In Android, Using ZXing we can scan a QR code through phone camera and decode it.

But, in my scenario, the QR code image is stored in the phone itself and I need to decode it.

Is there anyway to decode a QR image in this manner?

2条回答
smile是对你的礼貌
2楼-- · 2019-03-17 10:15

You can simply use the Mobile Vision API for decoding a QR Code from Image.It is very accurate and can detect more than one Qr code over image.

You have to include the following library inorder to use Mobile Vision API :

compile 'com.google.android.gms:play-services-vision:9.6.1'

BarcodeDetector detector =
                new BarcodeDetector.Builder(context)
                        .setBarcodeFormats(Barcode.DATA_MATRIX | Barcode.QR_CODE)
                        .build();
        if(!detector.isOperational()){
            Log.d("QR_READ","Could not set up the detector!");
        }
        Frame frame = new Frame.Builder().setBitmap(bitmap).build();
        SparseArray<Barcode> barcodes = detector.detect(frame);
            Log.d("QR_READ","-barcodeLength-"+barcodes.size());
            Barcode thisCode=null;
            if(barcodes.size()==0){
                Log.d("QR_VALUE","--NODATA");
            }
            else if(barcodes.size()==1){
                thisCode = barcodes.valueAt(0);
                Log.d("QR_VALUE","--"+thisCode.rawValue);
            }
            else{
                for(int iter=0;iter<barcodes.size();iter++) {
                    thisCode = barcodes.valueAt(iter);
                    Log.d("QR_VALUE","--"+thisCode.rawValue);
                }
            }
查看更多
手持菜刀,她持情操
3楼-- · 2019-03-17 10:24

You can use ZXing code for this.

Check out DecodeHandler.java.

查看更多
登录 后发表回答