由于现有的生成解析二维码的库使用较为复杂,于是本人封装了一层,希望达到解码时传入一个图片url或者file对象,直接返回内容。编码时传入内容直接返回image对象或者base64,于是有了这个项目
以下是github地址及文档
注:该库编解码功能分别封装自 aralejs/qrcode 和 cozmo/jsQR
npm i tc-qrcode
import qrcode from 'tc-qrcode';
qrcode.decodeFromUrl('https://cdn.jsdelivr.net/gh/theajack/qrcode/helper/demo-qrcode.png')
.then(result=>{
console.log(result);
})
<script src="https://cdn.jsdelivr.net/npm/tc-qrcode/tc-qrcode.min.js"></script>
<script>
TCQrcode.decodeFromUrl('https://cdn.jsdelivr.net/gh/theajack/qrcode/helper/demo-qrcode.png')
.then(function (result) {
console.log(result);
})
</script>
请参考 index.d.ts
注:
编码的api都支持类型为 IEncodeOption 输入参数,如果传入的是字符串,则以下参数都传入默认值. 返回值也都是经过Promise 包裹的
interface IEncodeOption {
text: string;
width?: number; // 默认值 256
height?: number; // 默认值 256
typeNumber?: number; // 默认值 4
colorDark?: string; // 默认值 '#000000'
colorLight?: string; // 默认值 '#ffffff'
correctLevel?: 1 | 0 | 3 | 2; // 默认值 2
}
从url中解析二维码,可以是一个在线的图片地址或者blob url
function decodeFromUrl(url: string): Promise<string>;
import {decodeFromUrl} from 'tc-qrcode';
decodeFromUrl('xxx').then(result=>{});
从file对象中解析二维码
function decodeFromFile(file: File): Promise<string>;
import {decodeFromFile} from 'tc-qrcode';
decodeFromFile(file).then(result=>{});
从base64的图中解析二维码
function decodeFromBase64(base64Str: string): Promise<string>;
import {decodeFromBase64} from 'tc-qrcode';
decodeFromBase64(base64).then(result=>{});
从image对象中解析二维码
function decodeFromImage(image: HTMLImageElement): Promise<string>;
import {decodeFromImage} from 'tc-qrcode';
decodeFromImage(image).then(result=>{});
从video对象中截图并解析二维码
function decodeFromVideo(video: HTMLVideoElement): Promise<string>;
import {decodeFromVideo} from 'tc-qrcode';
decodeFromVideo(video).then(result=>{});
从canvas对象中截图并解析二维码
function decodeFromCanvas(canvas: HTMLCanvasElement): Promise<string>;
import {decodeFromCanvas} from 'tc-qrcode';
decodeFromCanvas(canvas).then(result=>{});
绑定一个type为file的input元素作为输入源,持续的解析二维码
这个方法不会返回 string 对象,而是使用一个回调函数来接收返回值
function decodeBindInput(input: HTMLInputElement, onResult: (result: string) => void): void;
import {decodeBindInput} from 'tc-qrcode';
decodeBindInput(input, (result)=>{
});
将内容编码为base64的图片
function encodeAsBase64(content: string | IEncodeOption): string;
import {encodeAsBase64} from 'tc-qrcode';
const base64 = encodeAsBase64('xxxx');
// 或使用参数
const base64 = encodeAsBase64({
text: 'xxx',
width: 256, // 默认值 256
height: 256, // 默认值 256
typeNumber: 4; // 默认值 4
colorDark: '#000000'; // 默认值 '#000000'
colorLight: '#ffffff'; // 默认值 '#ffffff'
correctLevel: 2; // 默认值 2
});
将内容编码为base64之后生成一个image元素
function encodeAsImage(content: string | IEncodeOption): HTMLImageElement;
import {encodeAsImage} from 'tc-qrcode';
const image = encodeAsImage('xxxx'); // 参数与3.8一致
获取版本号
import qrcode from 'tc-qrcode';
qrcode.version;
暴露出编码使用库 aralejs/qrcode
import qrcode from 'tc-qrcode';
qrcode.Encoder;
暴露出解码使用库 cozmo/jsQR
import qrcode from 'tc-qrcode';
qrcode.Decoder;