devilsen/CZXing

设置BarcodeFormat后二维码无法扫描

Closed this issue · 2 comments

BarcodeFormat[] formats = new BarcodeFormat[]{BarcodeFormat.QR_CODE,
BarcodeFormat.CODABAR,
BarcodeFormat.CODE_128,
BarcodeFormat.EAN_13,
BarcodeFormat.CODE_93,
BarcodeFormat.CODE_39};
mScanView.setBarcodeFormat(formats);
设置后无法扫描二维码

    BarcodeFormat[] formats = new BarcodeFormat[]{
            BarcodeFormat.QR_CODE,
            BarcodeFormat.CODE_128,
            BarcodeFormat.CODE_93,
            BarcodeFormat.CODE_39};
    mScanView.setBarcodeFormat(formats);

设置后二维码扫描速度很慢,甚至扫不出来

确实有这个问题,下个版本改一下

已修复