如何用.NET生成二维码?

二维码是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据符号信息的,国外对二维码技术的研究始于20世纪80年代 末,在二维码符号表示技术研究方面已研制出多种码制,常见的有PDF417、QR Code、Code 49、Code 16K、Code One等。二维码技术已经被广泛应用于公安、外交、军事等部门对各类证件的管理,而且也将二维码应用于海关、税务等部门对各类报表和票据的管理,商业、交 通运输等部门对商品及货物运输的管理、邮政部门对邮政包裹的管理、工业生产领域对工业生产线的自动化管理。

站在用户的角度思考问题,与客户深入沟通,找到路桥网站设计与路桥网站推广的解决方案,凭借多年的经验,让设计与互联网技术结合,创造个性化、用户体验好的作品,建站类型包括:网站设计制作、网站建设、企业官网、英文网站、手机端网站、网站推广、主机域名网站空间、企业邮箱。业务覆盖路桥地区。

下面介绍一下如何用.NET生成二维码(QR Code码制),下面给出详细步骤:

1、新建一个window应用程序,然后引入.NET二维码类库(开源的类库,可从网上下载):

2、构建UI界面,代码如下:

  
 
  1. namespace WinQRCode
  2. {
  3.     partial class Form1
  4.     {
  5.         /// 
  6.         /// 必需的设计器变量。
  7.         /// 
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// 
  10.         /// 清理所有正在使用的资源。
  11.         /// 
  12.         /// 如果应释放托管资源,为 true;否则为 false。
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// 
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// 
  26.         private void InitializeComponent()
  27.         {
  28.             this.button1 = new System.Windows.Forms.Button();
  29.             this.button2 = new System.Windows.Forms.Button();
  30.             this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31.             this.label1 = new System.Windows.Forms.Label();
  32.             this.textBox1 = new System.Windows.Forms.TextBox();
  33.             this.label2 = new System.Windows.Forms.Label();
  34.             this.lbl解码信息 = new System.Windows.Forms.Label();
  35.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  36.             this.SuspendLayout();
  37.             // 
  38.             // button1
  39.             // 
  40.             this.button1.Location = new System.Drawing.Point(446, 31);
  41.             this.button1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  42.             this.button1.Name = "button1";
  43.             this.button1.Size = new System.Drawing.Size(103, 37);
  44.             this.button1.TabIndex = 0;
  45.             this.button1.Text = "编码";
  46.             this.button1.UseVisualStyleBackColor = true;
  47.             this.button1.Click += new System.EventHandler(this.button1_Click);
  48.             // 
  49.             // button2
  50.             // 
  51.             this.button2.Location = new System.Drawing.Point(446, 81);
  52.             this.button2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  53.             this.button2.Name = "button2";
  54.             this.button2.Size = new System.Drawing.Size(103, 37);
  55.             this.button2.TabIndex = 1;
  56.             this.button2.Text = "解码";
  57.             this.button2.UseVisualStyleBackColor = true;
  58.             this.button2.Click += new System.EventHandler(this.button2_Click);
  59.             // 
  60.             // pictureBox1
  61.             // 
  62.             this.pictureBox1.Location = new System.Drawing.Point(23, 117);
  63.             this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  64.             this.pictureBox1.Name = "pictureBox1";
  65.             this.pictureBox1.Size = new System.Drawing.Size(279, 253);
  66.             this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  67.             this.pictureBox1.TabIndex = 2;
  68.             this.pictureBox1.TabStop = false;
  69.             // 
  70.             // label1
  71.             // 
  72.             this.label1.AutoSize = true;
  73.             this.label1.Location = new System.Drawing.Point(18, 39);
  74.             this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  75.             this.label1.Name = "label1";
  76.             this.label1.Size = new System.Drawing.Size(69, 25);
  77.             this.label1.TabIndex = 3;
  78.             this.label1.Text = "信息:";
  79.             // 
  80.             // textBox1
  81.             // 
  82.             this.textBox1.Location = new System.Drawing.Point(95, 37);
  83.             this.textBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  84.             this.textBox1.Name = "textBox1";
  85.             this.textBox1.Size = new System.Drawing.Size(333, 31);
  86.             this.textBox1.TabIndex = 4;
  87.             // 
  88.             // label2
  89.             // 
  90.             this.label2.AutoSize = true;
  91.             this.label2.Location = new System.Drawing.Point(18, 81);
  92.             this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  93.             this.label2.Name = "label2";
  94.             this.label2.Size = new System.Drawing.Size(88, 25);
  95.             this.label2.TabIndex = 5;
  96.             this.label2.Text = "二维码:";
  97.             // 
  98.             // lbl解码信息
  99.             // 
  100.             this.lbl解码信息.AutoSize = true;
  101.             this.lbl解码信息.Location = new System.Drawing.Point(101, 81);
  102.             this.lbl解码信息.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  103.             this.lbl解码信息.Name = "lbl解码信息";
  104.             this.lbl解码信息.Size = new System.Drawing.Size(0, 25);
  105.             this.lbl解码信息.TabIndex = 6;
  106.             // 
  107.             // Form1
  108.             // 
  109.             this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
  110.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111.             this.ClientSize = new System.Drawing.Size(572, 384);
  112.             this.Controls.Add(this.lbl解码信息);
  113.             this.Controls.Add(this.label2);
  114.             this.Controls.Add(this.textBox1);
  115.             this.Controls.Add(this.label1);
  116.             this.Controls.Add(this.pictureBox1);
  117.             this.Controls.Add(this.button2);
  118.             this.Controls.Add(this.button1);
  119.             this.Font = new System.Drawing.Font("微软雅黑", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  120.             this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  121.             this.Name = "Form1";
  122.             this.Text = "二维码";
  123.             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  124.             this.ResumeLayout(false);
  125.             this.PerformLayout();
  126.         }
  127.         #endregion
  128.         private System.Windows.Forms.Button button1;
  129.         private System.Windows.Forms.Button button2;
  130.         private System.Windows.Forms.PictureBox pictureBox1;
  131.         private System.Windows.Forms.Label label1;
  132.         private System.Windows.Forms.TextBox textBox1;
  133.         private System.Windows.Forms.Label label2;
  134.         private System.Windows.Forms.Label lbl解码信息;
  135.     }
  136. }

图形如下所示:

3、编写 编码和解码按钮事件,进行编码和解码处理:

  
 
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace WinQRCode
  10. {
  11.     using ThoughtWorks.QRCode.Codec;
  12.     using ThoughtWorks.QRCode.Codec.Data;
  13.     using ThoughtWorks.QRCode.Codec.Util;
  14.     using System.IO;
  15.     using PdfToImage;
  16.     public partial class Form1 : Form
  17.     {
  18.         public Form1()
  19.         {
  20.             InitializeComponent();
  21.         }
  22.         /// 
  23.         /// 编码
  24.         /// 
  25.         /// 
  26.         /// 
  27.         private void button1_Click(object sender, EventArgs e)
  28.         {
  29.             if (this.textBox1.Text != "")
  30.             {
  31.                 Cursor.Current = Cursors.WaitCursor;
  32.                 if (textBox1.Text.Trim() == String.Empty)
  33.                 {
  34.                     MessageBox.Show("不能为空.");
  35.                     return;
  36.                 }
  37.                 QRCodeEncoder qrCodeEncoder = new QRCodeEncoder();               
  38.                 qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
  39.                 qrCodeEncoder.QRCodeScale = 4;
  40.                 qrCodeEncoder.QRCodeVersion = 7;             
  41.                qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;               
  42.                 System.Drawing.Image image;
  43.                 String data = textBox1.Text;
  44.                 //编码
  45.                 image = qrCodeEncoder.Encode(data);
  46.                 //图片显示
  47.                 this.pictureBox1.Image = image;
  48.                 Cursor.Current = Cursors.Default;
  49.             }
  50.         }
  51.         /// 
  52.         /// 解码
  53.         /// 
  54.         /// 
  55.         /// 
  56.         private void button2_Click(object sender, EventArgs e)
  57.         {
  58.             Cursor.Current = Cursors.WaitCursor;
  59.             Bitmap b = this.pictureBox1.Image as Bitmap;
  60.             try
  61.             {
  62.                 QRCodeDecoder decoder = new QRCodeDecoder();
  63.                 //解码
  64.                 String decodedString = decoder.decode(new QRCodeBitmapImage(b));
  65.                 //显示解码信息
  66.                 this.lbl解码信息.Text += decodedString ;
  67.             }
  68.             catch (Exception ex)
  69.             {
  70.                 MessageBox.Show(ex.Message);
  71.             }
  72.             Cursor.Current = Cursors.Default;
  73.         }
  74.         private void Form1_Load(object sender, EventArgs e)
  75.         {
  76.         }
  77.     }
  78. }

4、编译运行,如下图:

 水平有限,望各位园友不吝赐教!如果觉得不错,请疯狂的点击推荐和关注!

网页标题:如何用.NET生成二维码?
文章分享:http://www.shufengxianlan.com/qtweb/news16/43616.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联