Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / C#
Article

Open Source QRCode Library

Rate me:
Please Sign up or sign in to vote.
4.92/5 (147 votes)
20 Sep 2007CPOL1 min read 5.9M   192.2K   420   334
How to use QRCode library to encode and decode QRCode
Screenshot - qrcode_app_decode.jpg

Introduction

In this article, I will briefly describe the functionalities of the QRCode library.

Background

QRCode library is a .NET component that can be used to encode and decode QRCode. QRCode is a 2 dimensional bar code that originated in Japan. Nowadays, it is widely used in a wide range of industries, e.g. for vehicle parts tracking and inventory management.

QR stands for "Quick Response". It was created by the Japanese corporation Denso-Wave in 1994 and is aimed at decoding contents at high speed. Nowadays, QR Code is used in mobile phones to ease data entry.

QRCode can also be printed on a business card or shown on any display, which can then be captured by the mobile phone provided the mobile phone has the software to read QRCode.

QRCode library provides functions to:

  1. Encode content into a QR Code image which can be saved in JPEG, GIF, PNG, or Bitmap formats
  2. Decode a QR Code image

Using the Code

The library can be used in any .NET 2.0 Windows Application, ASP.NET Web application or Windows Mobile device application.

Some sample screenshots are displayed below:

Screenshot - qrcode_app_encode.jpg

Screenshot - qrcode_mobile_encode.jpg

C#
QRCodeEncoder qrCodeEncoder = new QRCodeEncoder();
          String encoding = cboEncoding.Text ;
          if (encoding == "Byte") {
              qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
          } else if (encoding == "AlphaNumeric") {
              qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.ALPHA_NUMERIC;
          } else if (encoding == "Numeric") {
              qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.NUMERIC;
          }
          try {
              int scale = Convert.ToInt16(txtSize.Text);
              qrCodeEncoder.QRCodeScale = scale;
          } catch (Exception ex) {
              MessageBox.Show("Invalid size!");
              return;
          }
          try {
              int version = Convert.ToInt16(cboVersion.Text) ;
              qrCodeEncoder.QRCodeVersion = version;
          } catch (Exception ex) {
              MessageBox.Show("Invalid version !");
          }

          string errorCorrect = cboCorrectionLevel.Text;
          if (errorCorrect == "L")
              qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.L;
          else if (errorCorrect == "M")
              qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;
          else if (errorCorrect == "Q")
              qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.Q;
          else if (errorCorrect == "H")
              qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.H;

          Image image;
          String data = txtEncodeData.Text;
          image = qrCodeEncoder.Encode(data);
          picEncode.Image = image;

History

  • 20th September, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Malaysia Malaysia
A programmer for a long time, and still learning everyday.

A supporter for open source solutions, and have written quite a few open source software both in .NET and Java.

https://mengwangk.github.io/

Comments and Discussions

 
Questionnot reading qr when add arabic language in qr code Pin
Althaf Ahamed 202119-Oct-21 1:54
Althaf Ahamed 202119-Oct-21 1:54 
Questionits not work with utf-8? has bug? Pin
Black_Storm15-Feb-21 14:35
Black_Storm15-Feb-21 14:35 
QuestionIndexOutOfRangeException Pin
debbieboy2k30-Aug-17 5:18
debbieboy2k30-Aug-17 5:18 
AnswerRe: IndexOutOfRangeException Pin
macxicon111-Dec-18 21:26
macxicon111-Dec-18 21:26 
QuestionRegrading QR Code Genereator Pin
Member 1306301018-May-17 1:52
Member 1306301018-May-17 1:52 
Questionhelp Pin
Member 123410598-Mar-17 0:08
Member 123410598-Mar-17 0:08 
Questionopen source dll is not working in SSRS Pin
Member 1278240710-Oct-16 18:16
Member 1278240710-Oct-16 18:16 
Question[My vote of 1] Huge Lib for generating a QR code? Pin
Alphons van der Heijden22-Jun-16 23:56
professionalAlphons van der Heijden22-Jun-16 23:56 
QuestionData Matrix Pin
Umair Tariq31-May-16 19:29
Umair Tariq31-May-16 19:29 
QuestionQRCode App Not working for tilted qr codes Pin
gaurav baluni3-Apr-16 23:50
gaurav baluni3-Apr-16 23:50 
QuestionError in Line 454 of QRCodeEncoder Pin
Member 1140851411-Feb-16 23:36
Member 1140851411-Feb-16 23:36 
AnswerRe: Error in Line 454 of QRCodeEncoder PinPopular
Member 1140851412-Feb-16 1:42
Member 1140851412-Feb-16 1:42 
GeneralRe: Error in Line 454 of QRCodeEncoder Pin
peterkmx16-Jun-16 0:57
professionalpeterkmx16-Jun-16 0:57 
GeneralMy vote of 3 Pin
Brady Kelly29-Dec-15 4:11
Brady Kelly29-Dec-15 4:11 
QuestionVery bad coding Pin
Brady Kelly29-Dec-15 4:10
Brady Kelly29-Dec-15 4:10 
I'm not gonna vote, but using long if statements to map dropdown text to value? Really? Have you not heard of a Dictionary, or even a DataTable?
Do what thou wilt shall be the whole of the Law. - Liber AL vel Legis 1:40, Aleister Crowley

PraiseWorks Great Pin
BlackstormSP14-Dec-15 23:47
BlackstormSP14-Dec-15 23:47 
QuestionHelp me? Pin
Pai Soe6-Dec-15 21:11
Pai Soe6-Dec-15 21:11 
QuestionCould not able to use dll in windows mobile Pin
Anil Kumar R.30-Nov-15 0:50
Anil Kumar R.30-Nov-15 0:50 
QuestionIs it possible to display the image in web browser? Pin
phyxian7-Oct-15 22:47
professionalphyxian7-Oct-15 22:47 
AnswerRe: Is it possible to display the image in web browser? Pin
Member 889549513-Nov-15 5:39
Member 889549513-Nov-15 5:39 
QuestionRegarding QR Barcode Pin
simantamedhi29-Jul-15 19:41
professionalsimantamedhi29-Jul-15 19:41 
Questionhao li haide yangzi Pin
Member 1183258212-Jul-15 20:48
Member 1183258212-Jul-15 20:48 
AnswerRe: hao li haide yangzi Pin
linqing17128-Nov-16 19:12
linqing17128-Nov-16 19:12 
GeneralMy vote of 5 Pin
RedDk18-Jun-15 9:39
RedDk18-Jun-15 9:39 
GeneralMy vote of 1 Pin
RedDk22-Apr-15 8:12
RedDk22-Apr-15 8:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.