Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at com.google.zxing.qrcode.QRCodeWriter.encode(QRCodeWriter.java:80)
at com.google.zxing.MultiFormatWriter.encode(MultiFormatWriter.java:94)
at com.llm.zxing.CreateQRCode.main(CreateQRCode.java:34)
运行报错
at com.google.zxing.qrcode.QRCodeWriter.encode(QRCodeWriter.java:80)
at com.google.zxing.MultiFormatWriter.encode(MultiFormatWriter.java:94)
at com.llm.zxing.CreateQRCode.main(CreateQRCode.java:34)
运行报错
2016-11-10
解析图片是一串数字,帮大家排排坑,不是编码的问题,还是生成的图片有问题,大家看那个双重for循环gs.fillRect方法,大家如果i在外层循环,j在内层循环(个人习惯),应该gs.fillRect(i*3+pixoff,j*3+pixoff, 3, 3);,而不是gs.fillRect(j*3+pixoff,i*3+pixoff, 3, 3);j和i的位置问题,我生成的图片扫描出来www.imooc.com,但是解析确实一串数字,发现i和j写反了
2016-11-07
不是编码的问题,还是生成的图片有问题,大家看那个双重for循环gs.fillRect方法,大家如果i在外层循环,j在内层循环(个人习惯),应该gs.fillRect(i*3+pixoff,j*3+pixoff, 3, 3);,而不是gs.fillRect(j*3+pixoff,i*3+pixoff, 3, 3);j和i的位置问题,我生成的图片扫描出来www.imooc.com,但是解析确实一串数字,发现i和j写反了
2016-11-07