我正在使用谷歌视觉 API 来扫描条形码和二维码。现在我想为用户提供更多的便利,用户可以生成文本、url、电话、vcard 等条形码/二维码。
那么有人知道如何实现这一目标吗?因为 google play store 上有很多应用程序都在做同样的事情。
我正在使用谷歌视觉 API 来扫描条形码和二维码。现在我想为用户提供更多的便利,用户可以生成文本、url、电话、vcard 等条形码/二维码。
那么有人知道如何实现这一目标吗?因为 google play store 上有很多应用程序都在做同样的事情。
我正在尝试使用此代码生成 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;
}
尝试一下