dm77 / barcodescanner

Barcode Scanner Libraries for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extract the type of barcode

veritable34 opened this issue · comments

Hi,
Is it possible to get the barcode picture?
How can I do, is there an example?

Is it possible to buy a barcode type? How can I do, is there an example?
Like the example below

int type = barcodes.valueAt(index).valueFormat;
switch (type) {
case Barcode.CONTACT_INFO:
Log.i(LOG_TAG, code.contactInfo.title);
break;
case Barcode.EMAIL:
Log.i(LOG_TAG, code.email.address);
break;
case Barcode.ISBN:
Log.i(LOG_TAG, code.rawValue);
break;
case Barcode.PHONE:
Log.i(LOG_TAG, code.phone.number);
break;
case Barcode.PRODUCT:
Log.i(LOG_TAG, code.rawValue);
break;
case Barcode.SMS:
Log.i(LOG_TAG, code.sms.message);
break;
case Barcode.TEXT:
Log.i(LOG_TAG, code.rawValue);
break;
case Barcode.URL:
Log.i(LOG_TAG, "url: " + code.url.url);
break;
case Barcode.WIFI:
Log.i(LOG_TAG, code.wifi.ssid);
break;
case Barcode.GEO:
Log.i(LOG_TAG, code.geoPoint.lat + ":" + code.geoPoint.lng);
break;
case Barcode.CALENDAR_EVENT:
Log.i(LOG_TAG, code.calendarEvent.description);
break;
case Barcode.DRIVER_LICENSE:
Log.i(LOG_TAG, code.driverLicense.licenseNumber);
break;
default:
Log.i(LOG_TAG, code.rawValue);
break;
Regards,