Easy Barcode Scanner

Easy Barcode Scanner Free App

Rated 4.02/5 (53) —  Free Android application by Magic Len

Advertisements

About Easy Barcode Scanner

"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/

How to Download / Install

Download and install Easy Barcode Scanner version 2.0.4 on your Android device!
Downloaded 5,000+ times, content rating: Everyone
Android package: org.magiclen.barcodescanner, download Easy Barcode Scanner.apk

All Application Badges

Free
downl.
Android
5.0+
For everyone
Android app

App History & Updates

Version update Easy Barcode Scanner was updated to version 2.0.4
Version update Easy Barcode Scanner was updated to version 2.0.2
More downloads  Easy Barcode Scanner reached 5 000 - 10 000 downloads
Version update Easy Barcode Scanner was updated to version 1.8.6

What are users saying about Easy Barcode Scanner

X70%
by X####:

This one works well, also from other apps which very few scanners do. It's also fully free. A winner!

U70%
by U####:

A nice quick scan of the code, both bar and Q.... but no way to tell what the item is... can't use it this way.The item is any object scanned. ... the scan is not connected to a DB.

S70%
by S####:

Works ok, but what was the point of implementing Android 6's new permission system if you're just going quit the app if any are denied. It really shouldn't need access to contacts. Edit: to be clear the problem is that it asks for contact access when you open the app, not when you try to create a vcard.

M70%
by M####:

What lib you used for scan barcode from image? pretty sure its not ZBar as it could not decode DataMatrix. Do you have example how to use your services? intent on how to scan image

V70%
by V####:

Won't scan barcodes on a Galaxy S6

Z70%
by Z####:

A nice quick scan of the code, both bar and Q.... but no way to tell what the item is... can't use it this way.The item is any object scanned. ... the scan is not connected to a DB.


Share The Word!


Rating Distribution

RATING
4.05
53 users

5

4

3

2

1