"Easy Barcode Scanner" is a simple barcode scanner based on zBar Reader. The zBar Reader is implemented by C code so that it has high performance. With zBar, Easy Barcode Scanner can support QR Code, EAN-8, EAN-13, UPC-E, UPC-A, ISBN-10, ISBN-13, Interleaved 2 of 5, DataBar, DataBar Expanded, Codabar, Code 39, Code 93、Code 128 and PDF417. Data Matrix is supporting now, too.
"Easy Barcode Scanner" allows you to use any angle of camera and device to scan barcode, and you don't have to put barcode at the center of your camera. Becides, you can touch the camera preview to focus to a object, zoom in or zoom out. If you want to change your camera, only ONE click you need to do.
For Android Developer, you can use this Android SDK code below to scan barcode for your app:
final Intent intent = new Intent("org.magiclen.barcodescanner.SCAN");
final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (list.size() > 0) {
intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); // Can also use PRODUCT_MODE, SCAN_MODE, QR_CODE_MODE
startActivityForResult(intent, 0);
} else {
// You may ask your user to install Easy Barcode Scanner
}
To get the scanning result, you must override onActivityResult method:
public void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
if (requestCode == 0) {
if (resultCode == Activity.RESULT_OK) {
final String result = data.getStringExtra("SCAN_RESULT"); // Get scanning result
final String type = data.getStringExtra("code_type"); // Get code type
} else {
// Not scan any code yet
}
}
}
Moreover, if you want to generate a QR code you can use this Android SDK code below:
final Intent intent = new Intent("org.magiclen.barcodescanner.ENCODE");
final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (list.size() > 0) {
intent.putExtra("ENCODE_DATA", "Put some string you want to encode");
startActivity(intent);
} else {
// You may ask your user to install Easy Barcode Scanner
}
If you have further interest in this app, you can check out our website at: https://magiclen.org/
Easy Barcode Scanner is an Android Tools app developed by Magic Len and published on the Google play store. It has gained around 5000 installs so far, with an average rating of 3.0 out of 5 in the play store.
Easy Barcode Scanner requires Android with an OS version of 5.0 and up. In addition, the app has a content rating of Everyone, from which you can decide if it is suitable to install for family, kids, or adult users. Easy Barcode Scanner is an Android app and cannot be installed on Windows PC or MAC directly.
Android Emulator is a software application that enables you to run Android apps and games on a PC by emulating Android OS. There are many free Android emulators available on the internet. However, emulators consume many system resources to emulate an OS and run apps on it. So it is advised that you check the minimum and required system requirements of an Android emulator before you download and install it on your PC.
Below you will find how to install and run Easy Barcode Scanner on PC:
If you follow the above steps correctly, you should have the Easy Barcode Scanner ready to run on your Windows PC or MAC. In addition, you can check the minimum system requirements of the emulator on the official website before installing it. This way, you can avoid any system-related technical issues.
Easy Barcode Scanner APK 2.0.9 | 5.01 MB | 2.0.9 |