angular2-qrscanner-fixed

1.0.10 • Public • Published

angular2-qrscanner

QrScanner will scan for a QRCode from your Web-cam and return its string representation by drawing the captured image onto a 2D Canvas and use @LazarSoft/jsqrcode to check for a valid QRCode every Xms

usage

$ npm install --save angular2-qrscanner
// app.module.ts
import { NgQrScannerModule } from 'angular2-qrscanner';
@NgModule({
  declarations: [
    // ...
  ],
  imports: [
    // ...
    NgQrScannerModule,
  ],
  providers: [],
  bootstrap: [
      
  ]
})
export class AppModule { }
<!-- app.component.html -->
<qr-scanner
        [debug]="false"
        [canvasWidth]="1080" <!-- canvas width                                 (default: 640) -->
        [canvasHeight]="720" <!-- canvas height                                (default: 480) -->
        [stopAfterScan]="true" <!-- should the scanner stop after first success? (default: true) -->
        [updateTime]="500"> <!-- miliseconds between new capture              (default: 500) -->
</qr-scanner>
 
// app.component.ts
 
import {Component, ViewChild, ViewEncapsulation, OnInit} from '@angular/core';
import {QrScannerComponent} from 'angular2-qrscanner';
 
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss'],
    encapsulation: ViewEncapsulation.None,
})
export class AppComponent implements OnInit {
 
 
    @ViewChild(QrScannerComponent) qrScannerComponent: QrScannerComponent ;
 
    ngOnInit() {
        this.qrScannerComponent.getMediaDevices().then(devices => {
            console.log(devices);
            const videoDevices: MediaDeviceInfo[] = [];
            for (const device of devices) {
                if (device.kind.toString() === 'videoinput') {
                    videoDevices.push(device);
                }
            }
            if (videoDevices.length > 0){
                let choosenDev;
                for (const dev of videoDevices){
                    if (dev.label.includes('front')){
                        choosenDev = dev;
                        break;
                    }
                }
                if (choosenDev) {
                    this.qrScannerComponent.chooseCamera.next(choosenDev);
                } else {
                    this.qrScannerComponent.chooseCamera.next(videoDevices[0]);
                }
            }
        });
 
        this.qrScannerComponent.capturedQr.subscribe(result => {
            console.log(result);
        });
    }
}
 
 

Package Sidebar

Install

npm i angular2-qrscanner-fixed

Weekly Downloads

0

Version

1.0.10

License

GPL-3.0-or-later

Unpacked Size

57.5 kB

Total Files

23

Last publish

Collaborators

  • xstor