QR Code

QRCode Generator based Golang

项目地址:yeqown/go-qrcode 同类项目:skip2/go-qrcode 纠错算法和bitset使用了该库,后续可能会考虑自己实现一遍

go-qrcode #

示例 #

link to CODE

package main

import (
	"fmt"

	qrcode "github.com/yeqown/go-qrcode"
)

func main() {
	qrc, err := qrcode.New("https://github.com/yeqown/go-qrcode")
	if err != nil {
		fmt.Printf("could not generate QRCode: %v", err)
	}

	// save file
	if err := qrc.Save("../testdata/repo-qrcode.jpeg"); err != nil {
		fmt.Printf("could not save image: %v", err)
	}
}

生成结果如图:

QR Code 基本原理 #

1 数据分析(data analysis): #

分析输入数据,根据数据决定要使用的QR码版本、容错级别和编码模式。低版本的QR码无法编码过长的数据,含有非数字字母字符的数据要使用扩展字符编码模式。

2 编码数据(data encoding): #

根据选择的编码模式,将输入的字符串转换成比特流,插入模式标识码(mode indicator)和终止标识符(terminator),把比特流切分成八比特的字节,加入填充字节来满足标准的数据字码数要求。

3 计算纠错码(error correction coding): #

对步骤二产生的比特流计算纠错码,附在比特流之后。高版本的编码方式可能需要将数据流切分成块(block)再分别进行纠错码计算。

...

访问量 访客数