Click here to Skip to main content
15,867,686 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

 
AnswerRe: 对中文的支持还是不够! Pin
xoyozo23-Mar-12 3:49
xoyozo23-Mar-12 3:49 
QuestionMemoryStream memoryStream = new MemoryStream(Resources.GetResource(fileName)); Pin
S.Sams22-Nov-11 20:46
S.Sams22-Nov-11 20:46 
AnswerRe: MemoryStream memoryStream = new MemoryStream(Resources.GetResource(fileName)); Pin
tomeekgd11-Mar-12 11:29
tomeekgd11-Mar-12 11:29 
QuestionChanging the QR foreground colour Pin
rambasnet3210-Nov-11 5:03
rambasnet3210-Nov-11 5:03 
SuggestionPerformance Pin
Havardo12-Oct-11 22:35
Havardo12-Oct-11 22:35 
GeneralRe: Performance Pin
hjgode13-Mar-12 0:08
hjgode13-Mar-12 0:08 
BugBug in BCH15_5.cs calcSyndrome(...) ? Pin
SergeyKS11-Oct-11 22:23
SergeyKS11-Oct-11 22:23 
QuestionResources.GetResource? Pin
ak165-Oct-11 4:12
ak165-Oct-11 4:12 
AnswerRe: Resources.GetResource? Pin
ak165-Oct-11 4:40
ak165-Oct-11 4:40 
GeneralRe: Resources.GetResource? Pin
Chupmink5-Oct-11 7:35
Chupmink5-Oct-11 7:35 
GeneralRe: Resources.GetResource? Pin
Sharafadeen18-Oct-11 0:08
Sharafadeen18-Oct-11 0:08 
GeneralRe: Resources.GetResource? Pin
S.Sams22-Nov-11 20:48
S.Sams22-Nov-11 20:48 
QuestionGreat help Pin
maoflo3-Oct-11 9:42
maoflo3-Oct-11 9:42 
Questionwhat's the use of resources file "qrv#_#.dat","qrvfr.dat","rsc.dat"? Pin
tingispig28-Sep-11 22:23
tingispig28-Sep-11 22:23 
AnswerRe: what's the use of resources file "qrv#_#.dat","qrvfr.dat","rsc.dat"? Pin
wvd_vegt30-Jan-12 23:45
professionalwvd_vegt30-Jan-12 23:45 
QuestionQR Code Not Working Pin
Gigi1001218-Sep-11 2:38
Gigi1001218-Sep-11 2:38 
Questionsin cos for use in calc for skew???? Pin
boblogan6-Sep-11 20:54
boblogan6-Sep-11 20:54 
QuestionLicensing Pin
Member 22402244-Aug-11 13:24
Member 22402244-Aug-11 13:24 
QuestionTo many errors and wanring using VS 2010 Pin
tristan1433-Aug-11 17:14
tristan1433-Aug-11 17:14 
BugArrayOutOfRangeException because of (sbyte i = 1; i < 128; i++) Pin
Manadar28-Jul-11 2:27
Manadar28-Jul-11 2:27 
GeneralRe: ArrayOutOfRangeException because of (sbyte i = 1; i < 128; i++) Pin
tristan1433-Aug-11 21:10
tristan1433-Aug-11 21:10 
QuestionQR code for windows phone Pin
saini4826-Jul-11 13:52
saini4826-Jul-11 13:52 
QuestionBeware - generated image is not QRCode compliant. Pin
EricT.21-Jun-11 6:49
EricT.21-Jun-11 6:49 
AnswerRe: Beware - generated image is not QRCode compliant. Pin
Manadar25-Jul-11 3:17
Manadar25-Jul-11 3:17 
QuestionRe: Beware - generated image is not QRCode compliant. Pin
wouterdebo25-Jan-12 3:47
wouterdebo25-Jan-12 3:47 

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.