All Projects → blikoon → Qrcodescanner

blikoon / Qrcodescanner

Android QR Code scanning library : QR Scanning library based on zxing for android devices API 15 and up

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Qrcodescanner

Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+1709.4%)
Mutual labels:  zxing, qrcode, scanner
Tesseract Ocr Scanner
基于Tesseract-OCR实现自动扫描识别手机号
Stars: ✭ 622 (+431.62%)
Mutual labels:  zxing, qrcode, scanner
Quick Media
media(audio/image/qrcode/markdown/html/svg) support web service (多媒体编辑服务, 酷炫二维码, 音频, 图片, svg, markdown, html渲染服务支持)
Stars: ✭ 612 (+423.08%)
Mutual labels:  zxing, qrcode
Zxinggenerator
花式二维码生成,提供了6种样式
Stars: ✭ 618 (+428.21%)
Mutual labels:  zxing, qrcode
Spring Qrcode Example
Demonstrates some of the capabilities of the Spring Boot framework through a small, simple example.
Stars: ✭ 23 (-80.34%)
Mutual labels:  zxing, qrcode
Qrcodescanner
An optimized qr code scan tool forked from zxing.
Stars: ✭ 427 (+264.96%)
Mutual labels:  zxing, qrcode
React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (+278.63%)
Mutual labels:  qrcode, scanner
Zxingview
👍 Lowest cost integration and most convenient customization zxing on android
Stars: ✭ 23 (-80.34%)
Mutual labels:  zxing, qrcode
garden.zbarcam
Migrated to https://github.com/kivy-garden/zbarcam
Stars: ✭ 49 (-58.12%)
Mutual labels:  scanner, qrcode
Library
Multi-format 1D/2D barcode image processing library, usable in JavaScript ecosystem.
Stars: ✭ 1,006 (+759.83%)
Mutual labels:  zxing, qrcode
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+739.32%)
Mutual labels:  qrcode, scanner
Scannermapp
A QR-code and barcode acanner app built in Delphi using ZXing and TFrameStand
Stars: ✭ 65 (-44.44%)
Mutual labels:  zxing, qrcode
Ngx Scanner
Angular (2+) QR code, Barcode, DataMatrix, scanner component using ZXing.
Stars: ✭ 420 (+258.97%)
Mutual labels:  zxing, scanner
Qzxing
Qt/QML wrapper library for the ZXing library. 1D/2D barcode image processing library
Stars: ✭ 401 (+242.74%)
Mutual labels:  zxing, qrcode
Code Scanner
Code scanner library for Android, based on ZXing
Stars: ✭ 543 (+364.1%)
Mutual labels:  zxing, scanner
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (+150.43%)
Mutual labels:  qrcode, scanner
Zzyqrcodeswift
a scanner for QRCode barCode 最好用的ios二维码、条形码,扫描、生成框架,支持闪光灯,从相册获取,扫描音效等,高仿微信,微博
Stars: ✭ 97 (-17.09%)
Mutual labels:  qrcode, scanner
simple-login-qrcode-webcam-php
🐱‍💻 Just simple login mechanism using QR Code Scanner with Webcam in PHP
Stars: ✭ 66 (-43.59%)
Mutual labels:  scanner, qrcode
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-41.03%)
Mutual labels:  qrcode, zxing
Czxing
C++ port of ZXing and ZBar for Android.
Stars: ✭ 854 (+629.91%)
Mutual labels:  zxing, qrcode

QRCodeScanner

QR Scanning library based on zxing for android devices API 15 and up

In action

Features

  • Scan QR Code
  • Load images containing QR Code and scan them
  • Easy to use
  • Flash light

How to use

  • In your root gradle file do the following :
   allprojects {
     repositories {
	...
	maven { url 'https://jitpack.io' }
	}
   }
  • In your app module gradle file just add the dependency
   dependencies {
    compile 'com.github.blikoon:QRCodeScanner:0.1.2'
   }

Be sure to check the latest version here

  • In your activity, Declare the Request code for QR Code scan
private static final int REQUEST_CODE_QR_SCAN = 101;
  • Start the QR Code scan activity, FOR RESULT,
@Override
public void onClick(View v) {
   Intent i = new Intent(MainActivity.this,QrCodeActivity.class);
   startActivityForResult( i,REQUEST_CODE_QR_SCAN);
}
  • And catch the scan result:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

        if(resultCode != Activity.RESULT_OK)
        {
            Log.d(LOGTAG,"COULD NOT GET A GOOD RESULT.");
            if(data==null)
                return;
            //Getting the passed result
            String result = data.getStringExtra("com.blikoon.qrcodescanner.error_decoding_image");
            if( result!=null)
            {
                AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
                alertDialog.setTitle("Scan Error");
                alertDialog.setMessage("QR Code could not be scanned");
                alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog, int which) {
                                dialog.dismiss();
                            }
                        });
                alertDialog.show();
            }
            return;

        }
        if(requestCode == REQUEST_CODE_QR_SCAN)
        {
            if(data==null)
                return;
            //Getting the passed result
            String result = data.getStringExtra("com.blikoon.qrcodescanner.got_qr_scan_relult");
            Log.d(LOGTAG,"Have scan result in your app activity :"+ result);
            AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
            alertDialog.setTitle("Scan result");
            alertDialog.setMessage(result);
            alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int which) {
                            dialog.dismiss();
                        }
                    });
            alertDialog.show();

        }
    }
  • You're good to go!

Example app

https://github.com/blikoon/QRCodeScanner/tree/master/app

Video Tutorial

https://www.youtube.com/watch?v=R9JxDpKpkAk

Licence

GPLv3

Found a bug?

Submit a github issue

Need help?

If you need one of our Commercial Services then do Contact us otherwise shoot us in the comments section of This librarie's article.We won't respond to general usage questions posted as github issues.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].