基于WEB的二维码生成系统设计
摘要: 本课题的研究目的是设计实现一个二维条码的生成与解码系统,设计内容包括二维条码的生成系统设计。生成系统完成了从输入数据到生成相应二维码的功能。本文简要介绍了QR二维条码的特点,详细阐述用计算机实现其编码的原理和方法,采用具体实例介绍设计步骤,并给出可实现编码的程序设计方法。另外,二维条码具有一维条码不具备的纠错功能。本文简要介绍了二维码的生成原理,重点分析研究它在QR二维条形码中的应用方法,在QR码的生成系统设计过程中,将提出新的编码方法应用于条码的编码方案中,实现了将输入的数据生成相对应的QR二维条码的过程。
关键词: QR二维码,二维码容错率,vs2008;
WEB code generation system design
Abstract: The purpose of the study is to design a qrcode and decode system, design system design includes two-dimensional bar code. Generation system completes the process from the input data to the corresponding two-dimensional code function. This paper introduces the characteristics of QR two-dimensional qrcode, explains the realization principle and the method of its coding by computer, using specific examples introduced the design steps, and gives the realization method of program design code. In addition, qrcode has a function of correcting one dimensional bar code not available. This paper briefly introduces the formation principle of two-dimensional code, study its application in two-dimensional qrcode QR analysis, in the design process of QR codes, the proposed coding scheme is a new coding method is applied to the bar code, realize the QR two-dimensional bar code input data to generate the corresponding.
Keywords: QR code, Fault tolerance, vs2008;
目 录
1 引言 6
2 二维码的生成原理 6
2.1基础知识 6
2.1.1定位图案 7
2.1.2功能性数据 8
2.1.3数据码和纠错码 8
2.2数据编码 8
2.3结束符和补齐符 9
2.3.1补齐码(Padding Bytes) 9
2.3.2纠错码 10
2.4最终编码 11
2.4.1穿插放置 11
2.4.2Remainder Bits 13
2.5画二维码图 14
2.5.1 Position Detection Pattern 14
2.5.2 Alignment Pattern 14
2.5.3 Timing Pattern 14
2.5.4 Format Information 15
2.5.5 Version Information 16
2.5.6数据和数据纠错码 17
2.5.7掩码图案 18
3 二维码生成系统设计和方法 20
3.1 总体设计 20
3.2功能设计 20
3.2.1二维码可自主添加logo 20
3.2.2 可以生成网址类型二维码 20
3.2.3 关于如何添加logo的方法 21
4代码实现之核心代码 25
4.1生成二维码的组件thoughtworks.qrcode 25
4.2 利用ThoughtWorks.QRCode.Codec生成二维码 26
4.3 Encoder.cs编码器 27
4.4 BitVector.cs位向量 28
4.5 BlockPair.cs生成矩阵 32
4.6容错率的实现 33
5代码实现之界面功能代码 35
5.1实现编码方式可选的主要部分代码 35
5.2实现可自主上传添加logo功能代码 36
5.3实现控制二维码大小的功能代码 39
5.4实现纠错等级调整的二维码功能代码 39
6 结束语 41
参考文献 42
致谢 43