我正在尝试从图像中解码 qrcode,但 zxing 返回 notfound 异常 用我的手机从屏幕上扫描的同一图像已成功解码:如何提高此文件的质量以允许 zxing 对其进行解码(或其他java库)我没有声誉,所以我无法上传图片:示例图片位于地址上一个链接已编辑
我正在尝试使用以下代码对其进行解码
Reader xReader = new QRCodeReader();
BufferedImage dest = ImageIO.read(imgFile);
LuminanceSource source = new BufferedImageLuminanceSource(dest);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Vector<BarcodeFormat> barcodeFormats = new Vector<>();
barcodeFormats.add(BarcodeFormat.QR_CODE);
HashMap<DecodeHintType, Object> decodeHints = new HashMap<>(3);
decodeHints.put(DecodeHintType.POSSIBLE_FORMATS, barcodeFormats);
decodeHints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);
Result result = null;
result = xReader.decode(bitmap, decodeHints);