1. Use JavaScript to parse the QR code1. What is a QR code?
2.qrcode-parserThis is a QR code front-end parsing tool with no dependencies. The advantage is that it is a small package and a lightweight tool, but the disadvantage is that it does not call the camera. You need to write code to call the camera. 1. Installation methodnpm add qrcode-parser 2. Usageimport qrcodeParser from 'qrcode-parser' let img = ''; qrcodeParser().then(res =>{ console.log(res) }) 3. ngx-qrcode2 A QR code generation tool integrated into 1. Installation methodnpm add ngx-qrcode2 2. UsageImport the module in Appmodule: import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { NgxQRCodeModule } from 'ngx-qrcode2'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, NgxQRCodeModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } app.component.html inserted template: <div style="text-align:center"> <h1>ngx-qrcode2 demo</h1> </div> <ngx-qrcode [qrc-element-type]="elementType" [qrc-value] = "value" qrc-class = "aclass" qrc-errorCorrectionLevel = "L"> </ngx-qrcode> Add the following code in app.component.ts: import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'app'; elementType = 'url'; value = 'Techiediaries'; } 4. Generate QR code on the front end 1. Installation methodnpm install @techiediaries/ngx-qrcode --save 2. UsageImport the module in Appmodule: import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { QrCodeAllModule } from 'ngx-qrcode-all'; import { AppComponent } from './app.component'; @NgModule({ imports: [ CommonModule, QrCodeAllModule ], declarations: [ AppComponent ] }) export class AppModule { constructor() {} } 3. Case 1: Code template for generating QR code<div id="qrcodeid"> <qr-code-all [qrCodeType]="url" [qrCodeValue]="'SK is the best in the world!'" [qrCodeVersion]="'1'" [qrCodeECLevel]="'M'" [qrCodeColorLight]="'#ffffff'" [qrCodeColorDark]="'#000000'" [width]="11" [margin]="4" [scale]="4" [scanQrCode]="false"> </qr-code-all> </div> 4. Case 2: Reading QR code<div id="qrcodeid"> <qr-code-all [canvasWidth]="640" [canvasHeight]="480" [debug]="false" [stopAfterScan]="true" [updateTime]="500" (onCapture)="captureImage($event)" [scanQrCode]="true"> </qr-code-all> </div> This concludes this article on three ways to use javascript to parse QR codes. For more information on javascript parsing QR codes, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Analysis of the principles of docker containers
MySQL is now the database used by most companies ...
In many cases, you need to process the background...
<br />Related articles: 9 practical suggesti...
--Homepage backup 1.txt text 2. Scan the image 3. ...
Remove the dotted box on the link Copy code The co...
Table of contents 1. Basic Concepts ACID 3.AutoCo...
Docker installation 1. Requirements: Linux kernel...
This article shares the specific code of jQuery t...
Since I returned the Mac, my original laptop has ...
Preface One of the functions of an interceptor is...
This article shares the specific code for WeChat ...
Preface In WeChat applet development (native wxml...
Table of contents 0x01. Install the Pagoda Panel ...
When we edit a layout, we usually use horizontal ...
The installation tutorial of MySQL 5.7.19 winx64 ...