ZXing 3.1.1-SNAPSHOT Encoded some UTF-8 text to QRCode. QRCodeReader fails to decode with com.google.zxing.NotFoundException. Enclosed is the QRCode in question. 
Activity
srowen commentedon Sep 2, 2014
It decodes fine, but if you intend to decode a complex pure image you probably want PURE_BARCODE mode.
http://zxing.org/w/decode?u=https%3A%2F%2Fcloud.githubusercontent.com%2Fassets%2F8625707%2F4123968%2Fcf4376a8-32d3-11e4-8e98-f9c088be721c.PNG
vivekratansinha commentedon Sep 2, 2014
Thank you for your prompt response.
Please point me towards the PURE_BARCODE mode reading.
vivekratansinha commentedon Sep 2, 2014
Found it.
DecodeHintType.PURE_BARCODE
baichengzhou commentedon Oct 24, 2016
牛逼,解决我的问题了。
baichengzhou commentedon Oct 24, 2016
我用zxing来解码的时候,普通的二维码能解析,但是中间带LOGO的解码的时候报错com.google.zxing.NotFoundException,虽然不是相同的问题,但是这个解决了我的问题。
hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);
完美!!!
yyds-6699 commentedon Dec 21, 2016
hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);
是的加入这一句代码解决问题。。。。
ysq1051838264 commentedon Jan 10, 2017
hints.put(DecodeHintType.PURE_BARCODE, Boolean.TRUE);加上这,还是报这错误com.google.zxing.NotFoundException
tanranran commentedon Aug 28, 2017
@ysq1051838264
+1
me too
zxing version 3.3.0
Humilton commentedon Jan 29, 2018
试试 : hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);
花费更多时间来寻找二维码.
in https://github.com/zxing/zxing/blob/master/core/src/main/java/com/google/zxing/DecodeHintType.java
it said :
`
/**
*/
TRY_HARDER(Void.class),
`
dublinmiton commentedon Feb 16, 2018
jinyu73 commentedon Apr 22, 2019
js使用的话,怎么解决这种报错
chengduHebiao commentedon Dec 4, 2019
but it didnt work for me ,so any other suggestion?
baichengzhou commentedon Dec 4, 2019
I optimized zxing, the success rate is very high, you can test it
https://www.sojson.com/qr/deqr.html
https://www.sojson.com/qr/zxing.html
chengduHebiao commentedon Dec 4, 2019
能给点建议和方向吗?
5 remaining items