c# 生成二维码的示例

 更新时间:2020年11月17日 09:43:02   作者:UP技术控  
这篇文章主要介绍了c# 生成二维码的示例,帮助大家更好的理解和使用c#编程语言,感兴趣的朋友可以了解下

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

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

开始编码

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

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

3、编码生成

 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;
          }
        }
      }
    }

上面代码运行的结果

还可以加上logo

 private Bitmap GetIconBitmap()
    {
      Bitmap img = null;
      if (iconPath.Text.Length > 0)
      {
        try
        {
          img = new Bitmap(iconPath.Text);
        }
        catch (Exception)
        {
        }
      }
      return img;
    }

完整代码

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# 生成二维码的资料请关注脚本之家其它相关文章!

相关文章

  • C#图表算法之最短路径

    C#图表算法之最短路径

    本文详细讲解了C#图表算法之最短路径,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-04-04
  • C#使用文件流读取文件的方法

    C#使用文件流读取文件的方法

    这篇文章主要介绍了C#使用文件流读取文件的方法,涉及C#中FileInfo类操作文件的技巧,需要的朋友可以参考下
    2015-04-04
  • C#实现字符串格式化的五种方式

    C#实现字符串格式化的五种方式

    C#字符串格式化是一种将数据插入到预定义文本模板中创建新字符串的过程,它允许开发者更方便地控制输出内容的布局和显示样式,本文给大家介绍了C#实现字符串格式化的五种方式,文中通过代码示例讲解的非常详细,需要的朋友可以参考下
    2024-07-07
  • C#实现带消息数的App图标

    C#实现带消息数的App图标

    这篇文章主要介绍了如何使用C#实现带消息数的App图标的方法,并附上全部源码,分享给大家,有需要的小伙伴可以参考下。
    2015-12-12
  • C#实现窗体中动态按钮的设计方法

    C#实现窗体中动态按钮的设计方法

    在窗体界面中,通常以按钮来代替菜单栏的功能,这种形式虽然给用户一种直观、界面风格各异的感觉,但通常按钮都是以静止的形式显示,所以本文给大家介绍了C#实现窗体中动态按钮的设计方法,感兴趣的朋友可以参考下
    2024-04-04
  • C#使用DLLImport调用外部DLL的方法

    C#使用DLLImport调用外部DLL的方法

    这篇文章介绍了C#使用DLLImport调用外部DLL的方法,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-04-04
  • Unity3D UI Text得分数字增加的实例代码

    Unity3D UI Text得分数字增加的实例代码

    这篇文章主要介绍了Unity3D UI Text得分数字增加方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2021-04-04
  • C#实现的ACCESS数据库操作类完整实例

    C#实现的ACCESS数据库操作类完整实例

    这篇文章主要介绍了C#实现的ACCESS数据库操作类,结合完整实例形式分析了C#针对access数据库增删改查、事务、结果处理等相关操作技巧,需要的朋友可以参考下
    2017-05-05
  • C#中时间的几种格式转换方法

    C#中时间的几种格式转换方法

    有时候我们要对C#时间进行转换,达到不同的显示效果,这里简单介绍下,方便需要的朋友
    2013-09-09
  • C#多线程系列之线程的创建和生命周期

    C#多线程系列之线程的创建和生命周期

    这篇文章介绍了C#多线程系列之线程的创建和生命周期,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-02-02

最新评论