最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

c# 生成二維碼的示例

 更新時間:2020年11月17日 09:43:02   作者:UP技術(shù)控  
這篇文章主要介紹了c# 生成二維碼的示例,幫助大家更好的理解和使用c#編程語言,感興趣的朋友可以了解下

二維碼是越來越流行了,很多地方都有可能是使用到。如果是靜態(tài)的二維碼還是比較好處理的,通過在線工具就可以直接生成一張二維碼圖片,比如:草料二維碼。但有的時候是需要動態(tài)生成的(根據(jù)動態(tài)數(shù)據(jù)生成),這個使用在線就工具就無法實現(xiàn)了。最好是能在代碼中直接生成一個二維碼圖片,這里我就介紹下使用QRCoder類庫在代碼中生成二維碼。

網(wǎng)上生成二維碼的組件還是挺多的,但是真正好用且快速的卻不多。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;
          }
        }
      }
    }

上面代碼運行的結(jié)果

還可以加上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# 生成二維碼的示例的詳細內(nèi)容,更多關(guān)于c# 生成二維碼的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • C#圖表算法之最短路徑

    C#圖表算法之最短路徑

    本文詳細講解了C#圖表算法之最短路徑,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-04-04
  • C#使用文件流讀取文件的方法

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

    這篇文章主要介紹了C#使用文件流讀取文件的方法,涉及C#中FileInfo類操作文件的技巧,需要的朋友可以參考下
    2015-04-04
  • C#實現(xiàn)字符串格式化的五種方式

    C#實現(xiàn)字符串格式化的五種方式

    C#字符串格式化是一種將數(shù)據(jù)插入到預定義文本模板中創(chuàng)建新字符串的過程,它允許開發(fā)者更方便地控制輸出內(nèi)容的布局和顯示樣式,本文給大家介紹了C#實現(xiàn)字符串格式化的五種方式,文中通過代碼示例講解的非常詳細,需要的朋友可以參考下
    2024-07-07
  • C#實現(xiàn)帶消息數(shù)的App圖標

    C#實現(xiàn)帶消息數(shù)的App圖標

    這篇文章主要介紹了如何使用C#實現(xiàn)帶消息數(shù)的App圖標的方法,并附上全部源碼,分享給大家,有需要的小伙伴可以參考下。
    2015-12-12
  • C#實現(xiàn)窗體中動態(tài)按鈕的設(shè)計方法

    C#實現(xiàn)窗體中動態(tài)按鈕的設(shè)計方法

    在窗體界面中,通常以按鈕來代替菜單欄的功能,這種形式雖然給用戶一種直觀、界面風格各異的感覺,但通常按鈕都是以靜止的形式顯示,所以本文給大家介紹了C#實現(xiàn)窗體中動態(tài)按鈕的設(shè)計方法,感興趣的朋友可以參考下
    2024-04-04
  • C#使用DLLImport調(diào)用外部DLL的方法

    C#使用DLLImport調(diào)用外部DLL的方法

    這篇文章介紹了C#使用DLLImport調(diào)用外部DLL的方法,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2022-04-04
  • Unity3D UI Text得分數(shù)字增加的實例代碼

    Unity3D UI Text得分數(shù)字增加的實例代碼

    這篇文章主要介紹了Unity3D UI Text得分數(shù)字增加方式,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2021-04-04
  • C#實現(xiàn)的ACCESS數(shù)據(jù)庫操作類完整實例

    C#實現(xiàn)的ACCESS數(shù)據(jù)庫操作類完整實例

    這篇文章主要介紹了C#實現(xiàn)的ACCESS數(shù)據(jù)庫操作類,結(jié)合完整實例形式分析了C#針對access數(shù)據(jù)庫增刪改查、事務、結(jié)果處理等相關(guān)操作技巧,需要的朋友可以參考下
    2017-05-05
  • C#中時間的幾種格式轉(zhuǎn)換方法

    C#中時間的幾種格式轉(zhuǎn)換方法

    有時候我們要對C#時間進行轉(zhuǎn)換,達到不同的顯示效果,這里簡單介紹下,方便需要的朋友
    2013-09-09
  • C#多線程系列之線程的創(chuàng)建和生命周期

    C#多線程系列之線程的創(chuàng)建和生命周期

    這篇文章介紹了C#多線程系列之線程的創(chuàng)建和生命周期,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-02-02

最新評論

阜南县| 庆城县| 镇康县| 远安县| 许昌县| 普宁市| 枣强县| 太保市| 屯昌县| 台东县| 宁阳县| 盘山县| 滁州市| 临澧县| 平利县| 肇东市| 阳山县| 孟连| 无极县| 舒城县| 宁远县| 石屏县| 临猗县| 丰台区| 西和县| 永兴县| 巢湖市| 定兴县| 洛川县| 渭南市| 庐江县| 马公市| 蒙山县| 大名县| 兴海县| 武隆县| 民县| 贵定县| 嵊泗县| 平塘县| 金秀|