服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - c# 生成二维码的示例

c# 生成二维码的示例

2022-10-17 11:32UP技术控 C#

这篇文章主要介绍了c# 生成二维码的示例,帮助大家更好的理解和使用c#编程语言,感兴趣的朋友可以了解下

二维码是越来越流行了,很多地方都有可能是使用到。如果是静态的二维码还是比较好处理的,通过在线工具就可以直接生成一张二维码图片,比如:草料二维码。但有的时候是需要动态生成的(根据动态数据生成),这个使用在线就工具就无法实现了。最好是能在代码中直接生成一个二维码图片,这里我就介绍下使用QRCoder类库在代码中生成二维码。

网上生成二维码的组件还是挺多的,但是真正好用且快速的却不多。QRCoder就是我在众多中找到的,它的生成速度快、而且使用也相当方便。

开始编码

1、安装 QRCoder组件。在项目上通过NuGet包管理器来安装,搜索名称:QRCoder

2、在代码中添加引用:using QRCoder;

3、编码生成

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
private void RenderQrCode()
   {
     string level = comboBoxECC.SelectedItem.ToString();
     QRCodeGenerator.ECCLevel eccLevel = (QRCodeGenerator.ECCLevel)(level == "L" ? 0 : level == "M" ? 1 : level == "Q" ? 2 : 3);
     using (QRCodeGenerator qrGenerator = new QRCodeGenerator())
     {
       using (QRCodeData qrCodeData = qrGenerator.CreateQrCode(textBoxQRCode.Text, eccLevel))
       {
         using (QRCode qrCode = new QRCode(qrCodeData))
         {
 
 
           pictureBoxQRCode.BackgroundImage = qrCode.GetGraphic(20, Color.Black, Color.White,
             GetIconBitmap(), (int) iconSize.Value);
 
 
            this.pictureBoxQRCode.Size = new System.Drawing.Size(pictureBoxQRCode.Width, pictureBoxQRCode.Height);
           //Set the SizeMode to center the image.
           this.pictureBoxQRCode.SizeMode = PictureBoxSizeMode.CenterImage;
 
 
           pictureBoxQRCode.SizeMode = PictureBoxSizeMode.StretchImage;
         }
       }
     }
   }

上面代码运行的结果

c# 生成二维码的示例

还可以加上logo

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
private Bitmap GetIconBitmap()
   {
     Bitmap img = null;
     if (iconPath.Text.Length > 0)
     {
       try
       {
         img = new Bitmap(iconPath.Text);
       }
       catch (Exception)
       {
       }
     }
     return img;
   }

c# 生成二维码的示例

完整代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using QRCoder;
using System.Drawing.Imaging;
using System.IO;
 
 
namespace QRCoderDemo
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
 
 
    private void Form1_Load(object sender, EventArgs e)
    {
      comboBoxECC.SelectedIndex = 0; //Pre-select ECC level "L"
      RenderQrCode();
    }
 
 
    private void buttonGenerate_Click(object sender, EventArgs e)
    {
      RenderQrCode();
    }
 
 
    private void RenderQrCode()
    {
      string level = comboBoxECC.SelectedItem.ToString();
      QRCodeGenerator.ECCLevel eccLevel = (QRCodeGenerator.ECCLevel)(level == "L" ? 0 : level == "M" ? 1 : level == "Q" ? 2 : 3);
      using (QRCodeGenerator qrGenerator = new QRCodeGenerator())
      {
        using (QRCodeData qrCodeData = qrGenerator.CreateQrCode(textBoxQRCode.Text, eccLevel))
        {
          using (QRCode qrCode = new QRCode(qrCodeData))
          {
 
 
            pictureBoxQRCode.BackgroundImage = qrCode.GetGraphic(20, Color.Black, Color.White,
              GetIconBitmap(), (int) iconSize.Value);
 
 
             this.pictureBoxQRCode.Size = new System.Drawing.Size(pictureBoxQRCode.Width, pictureBoxQRCode.Height);
            //Set the SizeMode to center the image.
            this.pictureBoxQRCode.SizeMode = PictureBoxSizeMode.CenterImage;
 
 
            pictureBoxQRCode.SizeMode = PictureBoxSizeMode.StretchImage;
          }
        }
      }
    }
 
 
    private Bitmap GetIconBitmap()
    {
      Bitmap img = null;
      if (iconPath.Text.Length > 0)
      {
        try
        {
          img = new Bitmap(iconPath.Text);
        }
        catch (Exception)
        {
        }
      }
      return img;
    }
 
 
    private void selectIconBtn_Click(object sender, EventArgs e)
    {
      OpenFileDialog openFileDlg = new OpenFileDialog();
      openFileDlg.Title = "Select icon";
      openFileDlg.Multiselect = false;
      openFileDlg.CheckFileExists = true;
      if (openFileDlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
      {
        iconPath.Text = openFileDlg.FileName;
        if (iconSize.Value == 0)
        {
          iconSize.Value = 15;
        }
      }
      else
      {
        iconPath.Text = "";
      }
    }
 
 
 
 
    private void btn_save_Click(object sender, EventArgs e)
    {
 
 
      // Displays a SaveFileDialog so the user can save the Image
      SaveFileDialog saveFileDialog1 = new SaveFileDialog();
      saveFileDialog1.Filter = "Bitmap Image|*.bmp|PNG Image|*.png|JPeg Image|*.jpg|Gif Image|*.gif";
      saveFileDialog1.Title = "Save an Image File";
      saveFileDialog1.ShowDialog();
 
 
      // If the file name is not an empty string open it for saving.
      if (saveFileDialog1.FileName != "")
      {
        // Saves the Image via a FileStream created by the OpenFile method.
        using (FileStream fs = (System.IO.FileStream) saveFileDialog1.OpenFile())
        {
          // Saves the Image in the appropriate ImageFormat based upon the
          // File type selected in the dialog box.
          // NOTE that the FilterIndex property is one-based.
 
 
          ImageFormat imageFormat = null;
          switch (saveFileDialog1.FilterIndex)
          {
            case 1:
              imageFormat = ImageFormat.Bmp;
              break;
            case 2:
              imageFormat = ImageFormat.Png;
              break;
            case 3:
              imageFormat = ImageFormat.Jpeg;
              break;
            case 4:
              imageFormat = ImageFormat.Gif;
              break;
            default:
              throw new NotSupportedException("File extension is not supported");
          }
 
 
          pictureBoxQRCode.BackgroundImage.Save(fs, imageFormat);
          fs.Close();
        }
      }
 
 
 
 
 
 
 
 
 
 
    }
 
 
    public void ExportToBmp(string path)
    {
 
 
    }
 
 
    private void textBoxQRCode_TextChanged(object sender, EventArgs e)
    {
      RenderQrCode();
    }
 
 
    private void comboBoxECC_SelectedIndexChanged(object sender, EventArgs e)
    {
      RenderQrCode();
    }
  }
}

以上就是c# 生成二维码的示例的详细内容,更多关于c# 生成二维码的资料请关注服务器之家其它相关文章!

原文链接:https://www.tuicool.com/articles/JFVZJ3A

延伸 · 阅读

精彩推荐
  • C#c# 委托详解

    c# 委托详解

    本文将通过实例解析对c# 委托进行详细介绍,具有很好的参考价值,下面跟着小编一起来看下吧...

    liyongke6662021-12-23
  • C#基于C#代码实现九宫格算法横竖都等于4

    基于C#代码实现九宫格算法横竖都等于4

    这篇文章主要介绍了基于C#代码实现九宫格算法横竖都等于4的相关资料,需要的朋友可以参考下...

    厦门德仔9032021-11-08
  • C#C#创建自定义控件的示例

    C#创建自定义控件的示例

    这篇文章主要介绍了C#创建自定义控件的示例,帮助大家更好的理解和学习c#,感兴趣的朋友可以了解下...

    zls3659412022-10-11
  • C#winform实现可拖动的自定义Label控件

    winform实现可拖动的自定义Label控件

    这篇文章主要为大家详细介绍了winform实现可拖动的自定义Label控件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    炒饭君10232022-02-22
  • C#C# 实例化接口对象的方法

    C# 实例化接口对象的方法

    下面小编就为大家带来一篇C# 实例化接口对象的方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    C#教程网11632021-12-27
  • C#基于mvc5+ef6+Bootstrap框架实现身份验证和权限管理

    基于mvc5+ef6+Bootstrap框架实现身份验证和权限管理

    最近刚做完一个项目,项目架构师使用mvc5+ef6+Bootstrap,用的是vs2015,数据库是sql server2014。下面小编把mvc5+ef6+Bootstrap项目心得之身份验证和权限管理模块的...

    丰叔叔11672021-11-29
  • C#深入了解c# 设计模式之简单工厂模式

    深入了解c# 设计模式之简单工厂模式

    这篇文章主要介绍了c# 设计模式之简单工厂模式的的相关资料,文中代码非常详细,帮助大家更好的理解和学习,感兴趣的朋友可以了解下...

    艾心6192022-09-19
  • C#C#自定义事件模拟风吹草摇摆效果

    C#自定义事件模拟风吹草摇摆效果

    这篇文章主要介绍了C#自定义事件模拟风吹草摇摆效果,草地上每一颗草都监听HoverTreeWindEvent事件,根据风向(WindDdirection)调整姿态。需要的朋友可以参考...

    计划6322022-01-19