How to generate an Barcode and convert it to Bitmap using new Google Vision API?
问题 How to generate an Barcode and convert it to Bitmap using new Google Vision API? Barcode barcode = new Barcode(); Barcode.Email email = new Barcode.Email(); email.address = "my_email@gmail.com"; email.subject = "My Subject; email.body = "My body content."; barcode.email = email; //Implement conversion Bitmap barcodeImage = barcodeToBitmap(barcode);// I do know this part. 回答1: You can detect your barcodes using Google Vision API and then use ZXing to generate the barcodes. You could try