2

我正在使用 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");
} 

你能帮忙吗?

4

3 回答 3

1

根据对相关问题的回答,使用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在您关闭时打开。

于 2013-02-21T04:58:29.333 回答
1

我也有这个问题。我解决了它。尝试将此提示添加到您的代码中:

hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);
于 2013-12-14T07:32:52.757 回答
0

我通过以下方式解决了这个问题:hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);

于 2016-04-20T09:48:22.803 回答