我正在使用zxing来解码QRcode图像,但它总是返回NotFoundException。 http://zxing.org/w/decode.jspx的在线解码器可以很好地扫描这些图像,因此应该可以在我的应用中执行此操作。 我正在使用此代码:
String path = Environment.getExternalStorageDirectory().getPath()+"/QRPictures/QRTest.bmp";
Bitmap bmp = BitmapFactory.decodeFile(path);
int[] pixels = new int[bmp.getWidth()*bmp.getHeight()];
bmp.getPixels(pixels, 0, bmp.getWidth(), 0, 0, bmp.getWidth(), bmp.getHeight());
LuminanceSource source = new RGBLuminanceSource(bmp.getWidth(), bmp.getHeight(), pixels);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Reader reader = new MultiFormatReader();
try {
Result result = reader.decode(bitmap);
String contents = result.getText();
Log.d(TAG, content);
} catch (NotFoundException e) {
Log.d(TAG, "NFE");
} catch (ChecksumException e) {
Log.d(TAG, "CSE");
} catch (FormatException e) {
Log.d(TAG, "FE");
}
你能帮忙吗?
答案 0 :(得分:1)
根据an answer相关问题,使用TRY_HARDER
解码提示可能有所帮助,因为它“选择了精确度,而不是速度”:
Hashtable<DecodeHintType, Object> decodeHints = new Hashtable<DecodeHintType, Object>();
decodeHints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);
Result result = reader.decode(bitmap, decodeHints);
如果在线服务中正确解释了相同的图片,但在您的情况下失败,那么当您将其关闭时,他们很可能已启用TRY_HARDER
。
答案 1 :(得分:1)
我也有这个问题。我解决了它。 尝试将此提示添加到您的代码中:
hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);
答案 2 :(得分:0)
我通过以下方式解决了这个问题:hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);