All Projects → jbialobr → Jsqrscanner

jbialobr / Jsqrscanner

Licence: apache-2.0
JavaScript QR Code scanner for HTML5 supporting browsers

Programming Languages

js
455 projects

Projects that are alternatives of or similar to Jsqrscanner

Czxing
C++ port of ZXing and ZBar for Android.
Stars: ✭ 854 (+302.83%)
Mutual labels:  qrcode-scanner, zxing, qrcode
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-67.45%)
Mutual labels:  qrcode, zxing, qrcode-scanner
Scannermapp
A QR-code and barcode acanner app built in Delphi using ZXing and TFrameStand
Stars: ✭ 65 (-69.34%)
Mutual labels:  qrcode-scanner, zxing, qrcode
Tesseract Ocr Scanner
基于Tesseract-OCR实现自动扫描识别手机号
Stars: ✭ 622 (+193.4%)
Mutual labels:  qrcode-scanner, zxing, qrcode
Instascan
HTML5 QR code scanner using your webcam
Stars: ✭ 2,657 (+1153.3%)
Mutual labels:  zxing, qrcode, html5
Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+898.58%)
Mutual labels:  qrcode-scanner, zxing, qrcode
Library
Multi-format 1D/2D barcode image processing library, usable in JavaScript ecosystem.
Stars: ✭ 1,006 (+374.53%)
Mutual labels:  zxing, qrcode
Qrcode
A pure JavaScript QRCode encode and decode library.
Stars: ✭ 69 (-67.45%)
Mutual labels:  qrcode-scanner, qrcode
Qrcodereader.swift
Simple QRCode reader in Swift
Stars: ✭ 1,202 (+466.98%)
Mutual labels:  qrcode-scanner, qrcode
Qrcodescanner
A lib to aid you quickly achieve qrcode scan
Stars: ✭ 98 (-53.77%)
Mutual labels:  qrcode-scanner, qrcode
Zxingview
👍 Lowest cost integration and most convenient customization zxing on android
Stars: ✭ 23 (-89.15%)
Mutual labels:  zxing, qrcode
Vue Qrcode Reader
A set of Vue.js components for detecting and decoding QR codes.
Stars: ✭ 1,240 (+484.91%)
Mutual labels:  qrcode-scanner, qrcode
Qr Code With Logo
带头像(logo)的二维码(qrcode)生成工具,无jQuery依赖,自由调整大小
Stars: ✭ 104 (-50.94%)
Mutual labels:  qrcode, html5
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+363.21%)
Mutual labels:  qrcode-scanner, qrcode
Spring Qrcode Example
Demonstrates some of the capabilities of the Spring Boot framework through a small, simple example.
Stars: ✭ 23 (-89.15%)
Mutual labels:  zxing, qrcode
Barcodescanner.xf
Barcode Scanner using GoogleVision API for Xamarin Form
Stars: ✭ 82 (-61.32%)
Mutual labels:  qrcode-scanner, qrcode
Qrscanner
A simple QR Code scanner framework for iOS. Provides a similar scan effect to ios13.
Stars: ✭ 134 (-36.79%)
Mutual labels:  qrcode-scanner, qrcode
React Native Qrcode Scanner
A QR code scanner component for React Native.
Stars: ✭ 1,796 (+747.17%)
Mutual labels:  qrcode-scanner, qrcode
Restaurantapp
Android Restaurant Application with QR Code Reader
Stars: ✭ 133 (-37.26%)
Mutual labels:  qrcode-scanner, qrcode
Zxinggenerator
花式二维码生成,提供了6种样式
Stars: ✭ 618 (+191.51%)
Mutual labels:  zxing, qrcode

JsQRScanner

JavaScript QR Code scanner for HTML5 supporting browsers. This library is based on the java implementation of the zxing QR reader. The library is automaticaly compiled by GWT from the original source with few modifications made to work with the html canvas element. The export of the public api is made with the gwt-exporter.

Live demo

https://jbialobr.github.io/JsQRScanner/

Treasure Hunt Game Creator using QR codes to encode clues

How to use

  1. Place all the files from the js directory on your server.

  2. Add the js script into your page.

<script type="text/javascript" src="/js/jsqrscanner.nocache.js"></script>
  1. Create a scanner control and append it to the DOM.
  <script type="text/javascript">
    function onQRCodeScanned(scannedText)
    {
    	var scannedTextMemo = document.getElementById("scannedTextMemo");
    	if(scannedTextMemo)
    	{
    		scannedTextMemo.value = scannedText;
    	}
    }
  
    //this function will be called when JsQRScanner is ready to use
    function JsQRScannerReady()
    {
        //create a new scanner passing to it a callback function that will be invoked when
        //the scanner succesfully scan a QR code
        var jbScanner = new JsQRScanner(onQRCodeScanned);
        //reduce the size of analyzed images to increase performance on mobile devices
        jbScanner.setSnapImageMaxSize(300);
    	var scannerParentElement = document.getElementById("scanner");
    	if(scannerParentElement)
    	{
    	    //append the jbScanner to an existing DOM element
    		jbScanner.appendTo(scannerParentElement);
    	}        
    }
  </script> 

Providing a video stream in a custom way:

  <script type="text/javascript">
    function onQRCodeScanned(scannedText)
    {
    	var scannedTextMemo = document.getElementById("scannedTextMemo");
    	if(scannedTextMemo)
    	{
    		scannedTextMemo.value = scannedText;
    	}
    }
    
    //funtion returning a promise with a video stream
    function provideVideoQQ()
    {
        return navigator.mediaDevices.enumerateDevices()
        .then(function(devices) {
            var exCameras = [];
            devices.forEach(function(device) {
            if (device.kind === 'videoinput') {
              exCameras.push(device.deviceId)
            }
         });
            
            return Promise.resolve(exCameras);
        }).then(function(ids){
            if(ids.length === 0)
            {
              return Promise.reject('Could not find a webcam');
            }
            
            return navigator.mediaDevices.getUserMedia({
                video: {
                  'optional': [{
                    'sourceId': ids.length === 1 ? ids[0] : ids[1]//this way QQ browser opens the rear camera
                    }]
                }
            });        
        });                
    }  
  
    //this function will be called when JsQRScanner is ready to use
    function JsQRScannerReady()
    {
        //create a new scanner passing to it a callback function that will be invoked when
        //the scanner succesfully scan a QR code
        var jbScanner = new JsQRScanner(onQRCodeScanned, provideVideoQQ);
        //reduce the size of analyzed images to increase performance on mobile devices
        jbScanner.setSnapImageMaxSize(300);
    	var scannerParentElement = document.getElementById("scanner");
    	if(scannerParentElement)
    	{
    	    //append the jbScanner to an existing DOM element
    		jbScanner.appendTo(scannerParentElement);
    	}        
    }
  </script> 

Scanner API

.appendTo( htmlElement )

Appends the scanner to the given htmlElement

.removeFrom( htmlElement )

Removes the scanner from the given htmlElement Does nothing If the scanner is not a child of htmlElement

.stopScanning()

Stops the scanner.

.resumeScanning()

Resumes the previously stopped scanner.

.setScanInterval( scanIntervalMilliseconds )

Sets the interval at which the scanner attempts to decode a qr code.

.getScanInterval()

Returns the interval at which the scanner attempts to decode a qr code. The interval is returned in milliseconds.

.setSnapImageMaxSize( snapImageMaxSizeInPixels )

Sets the maximum size of images captured from the webcam. The limit is applied to both width and height. The ratio of the image is preserved while resizing. Smaller sizes, like 300px can be set to increase performance on mobile devices.

.getSnapImageMaxSize()

Returns the SnapImageMaxSize in pixels.

.isActive()

Returns false if scanner was stopped, true otherwise.

.isScanning()

Returns true if scanner is actively scanning. That is the scanner is active and is attached to the DOM.

Known Issues

List of known 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].