


The latest solution for generating QR codes using C#, detailed explanation and examples (QRCoder)
I don’t know if anyone has made multiple QR codes? In this article, I will introduce to you how to use C# to generate QR codes. First, I will talk about the three classes QRCodeGenerator, QRCodeData, and QRCode required to generate QR codes. For easy understanding later. What are their responsibilities? QRCodeGenerator: Used to generate the data object stored in the QR code through the specified method, which is the Matrix in the middle of the QR code in QRCodeData. Then QRCode gets the QRCodeData and generates the QR code
QR code
1. Preface
I have been working on some things related to QR codes recently, so I came into contact with some QR codes, so since I have used them, I must have used them.
In fact, about There are really countless articles about QR codes, and many of them are written very seriously and are very good, but it is just like learning. Just because others know it does not mean that you have no value in learning and recording, so learning does not come sooner or later
Introducing the package
1.Introduce QRCoder through NuGet
a) First, we create a new Class Library project, named here chestnut_qrcode
b) Then introduce the QRCoder package through NuGet
c) See the picture for operation
d) After the installation is successful, the reference to QRCoder will appear in the project reference
e) At this time, the introduction work has been completed, but it can be easily Create a Encoder.cs static public class
QR code generation class
1. Preparation
Let’s talk about it first Let’s take a look at the three classes needed to generate QR codes:
QRCodeGenerator
- ##QRCodeData
- QRCode
responsibilities?
QRCodeGenerator: Used to generate the data object stored in the QR code through the specified method, that is, QRCodeData Matrix in the middle of the QR code , then QRCode gets QRCodeData and generates QR code
2. EncodingEncoder.cs All codes are as follows:
using System.Drawing; namespace chestnut_qrcode { /// <summary> /// 二维码编码器 /// </summary> public static class Encoder { /// <summary> /// 生成二维码 /// </summary> /// <param name="msg">信息</param> /// <param name="version">版本 1 ~ 40</param> /// <param name="pixel">像素点大小</param> /// <param name="icon_path">图标路径</param> /// <param name="icon_size">图标尺寸</param> /// <param name="icon_border">图标边框厚度</param> /// <param name="white_edge">二维码白边</param> /// <returns>位图</returns> public static Bitmap code(string msg, int version, int pixel, string icon_path, int icon_size, int icon_border, bool white_edge) { QRCoder.QRCodeGenerator code_generator = new QRCoder.QRCodeGenerator(); QRCoder.QRCodeData code_data = code_generator.CreateQrCode(msg, QRCoder.QRCodeGenerator.ECCLevel.M/* 这里设置容错率的一个级别 */, true, true, QRCoder.QRCodeGenerator.EciMode.Utf8, version); QRCoder.QRCode code = new QRCoder.QRCode(code_data); Bitmap icon = new Bitmap(icon_path); Bitmap bmp = code.GetGraphic(pixel, Color.Black, Color.White, icon, icon_size, icon_border, white_edge); return bmp; } } }The parameters between fault tolerance and version are related to the encoding format. Some formats do not support Chinese.Prepare the Form1. Appearance
Seaconch here uses the
winform project, just take a screenshot
using System;
using System.Drawing;
using System.Windows.Forms;
namespace chestnut_form
{
public partial class frm_qrcode : Form
{
public frm_qrcode()
{
InitializeComponent();
}
// 窗体加载
private void frm_qrcode_Load(object sender, EventArgs e)
{
cb_version.SelectedIndex = 1;
cb_pixel.SelectedIndex = 0;
cb_icon_size.SelectedIndex = 0;
cb_icon_border.SelectedIndex = 1;
}
// 编码
private void btn_encode_Click(object sender, EventArgs e)
{
int version = Convert.ToInt16(cb_version.Text);
int pixel = Convert.ToInt16(cb_pixel.Text);
string str_msg = tb_msg.Text;
int int_icon_size = Convert.ToInt16(cb_icon_size.Text);
int int_icon_border = Convert.ToInt16(cb_icon_border.Text);
bool b_we = rb_we_y.Checked ? true : false;
Bitmap bmp = chestnut_qrcode.Encoder.code(str_msg, version, pixel, "E:/seaconch/git/1.jpg", int_icon_size, int_icon_border, b_we);
pb_qrcode.Image = bmp;
}
// 保存
private void btn_save_Click(object sender, EventArgs e)
{
if (pb_qrcode.Image != null)
using (SaveFileDialog sfd = new SaveFileDialog())
{
sfd.Filter = "(*.png)|*.png|(*.bmp)|*.bmp";
if (sfd.ShowDialog() == DialogResult.OK) pb_qrcode.Image.Save(sfd.FileName);
}
}
}
}
Look at the effect of C# QR code generation
Geek Academy C# video tutorial
The above is the detailed content of The latest solution for generating QR codes using C#, detailed explanation and examples (QRCoder). For more information, please follow other related articles on the PHP Chinese website!

C#.NET is widely used in the modern world in the fields of game development, financial services, the Internet of Things and cloud computing. 1) In game development, use C# to program through the Unity engine. 2) In the field of financial services, C#.NET is used to develop high-performance trading systems and data analysis tools. 3) In terms of IoT and cloud computing, C#.NET provides support through Azure services to develop device control logic and data processing.

.NETFrameworkisWindows-centric,while.NETCore/5/6supportscross-platformdevelopment.1).NETFramework,since2002,isidealforWindowsapplicationsbutlimitedincross-platformcapabilities.2).NETCore,from2016,anditsevolutions(.NET5/6)offerbetterperformance,cross-

The C#.NET developer community provides rich resources and support, including: 1. Microsoft's official documents, 2. Community forums such as StackOverflow and Reddit, and 3. Open source projects on GitHub. These resources help developers improve their programming skills from basic learning to advanced applications.

The advantages of C#.NET include: 1) Language features, such as asynchronous programming simplifies development; 2) Performance and reliability, improving efficiency through JIT compilation and garbage collection mechanisms; 3) Cross-platform support, .NETCore expands application scenarios; 4) A wide range of practical applications, with outstanding performance from the Web to desktop and game development.

C# is not always tied to .NET. 1) C# can run in the Mono runtime environment and is suitable for Linux and macOS. 2) In the Unity game engine, C# is used for scripting and does not rely on the .NET framework. 3) C# can also be used for embedded system development, such as .NETMicroFramework.

C# plays a core role in the .NET ecosystem and is the preferred language for developers. 1) C# provides efficient and easy-to-use programming methods, combining the advantages of C, C and Java. 2) Execute through .NET runtime (CLR) to ensure efficient cross-platform operation. 3) C# supports basic to advanced usage, such as LINQ and asynchronous programming. 4) Optimization and best practices include using StringBuilder and asynchronous programming to improve performance and maintainability.

C# is a programming language released by Microsoft in 2000, aiming to combine the power of C and the simplicity of Java. 1.C# is a type-safe, object-oriented programming language that supports encapsulation, inheritance and polymorphism. 2. The compilation process of C# converts the code into an intermediate language (IL), and then compiles it into machine code execution in the .NET runtime environment (CLR). 3. The basic usage of C# includes variable declarations, control flows and function definitions, while advanced usages cover asynchronous programming, LINQ and delegates, etc. 4. Common errors include type mismatch and null reference exceptions, which can be debugged through debugger, exception handling and logging. 5. Performance optimization suggestions include the use of LINQ, asynchronous programming, and improving code readability.

C# is a programming language, while .NET is a software framework. 1.C# is developed by Microsoft and is suitable for multi-platform development. 2..NET provides class libraries and runtime environments, and supports multilingual. The two work together to build modern applications.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version
Recommended: Win version, supports code prompts!

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
