我正在使用谷歌视觉API来扫描条形码和qrcodes。现在我想为用户提供一个更多的工具,用户可以生成文本,网址,电话,vcard等条形码/ qrcodes。
所以有人知道如何实现这个目标吗?因为Google Play商店中有很多应用程序,所以这些都在做同样的事情。
答案 0 :(得分:5)
答案 1 :(得分:0)
我正在尝试使用此代码生成Qr,使用此代码对我有用
public static Bitmap generateQrCode(String myCodeText) throws WriterException {
Hashtable<EncodeHintType, ErrorCorrectionLevel> hintMap = new Hashtable<EncodeHintType, ErrorCorrectionLevel>();
hintMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // H = 30% damage
QRCodeWriter qrCodeWriter = new QRCodeWriter();
int size = 256;
BitMatrix bitMatrix= qrCodeWriter.encode(myCodeText,BarcodeFormat.QR_CODE, size, size, hintMap);
int width = bitMatrix.getWidth();
Bitmap bmp = Bitmap.createBitmap(width, width, Bitmap.Config.RGB_565);
for (int x = 0; x < width; x++) {
for (int y = 0; y < width; y++) {
bmp.setPixel(y, x, bitMatrix.get(x, y) ? Color.BLACK : Color.WHITE);
}
}
return bmp;
}
尝试