3

我正在使用谷歌视觉 API 来扫描条形码和二维码。现在我想为用户提供更多的便利,用户可以生成文本、url、电话、vcard 等条形码/二维码。

那么有人知道如何实现这一目标吗?因为 google play store 上有很多应用程序都在做同样的事情。

4

2 回答 2

7

回答

你不能。

原因

不知道你用的是云端还是移动视觉api,但两者都不支持条码生成。它们只能用于扫描条形码。

选择

您可以使用ZXING 之类的工具来生成条形码。

于 2016-12-30T17:52:39.193 回答
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;
}

尝试一下

于 2020-02-09T21:16:27.357 回答