Click here to Skip to main content
15,889,034 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 6M   192.3K   421   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

 
GeneralRe: Decode incorrectly when encode with unicode string Pin
Piotr Czekalski28-Nov-10 3:02
Piotr Czekalski28-Nov-10 3:02 
GeneralRe: Decode incorrectly when encode with unicode string Pin
Manadar29-Dec-10 4:26
Manadar29-Dec-10 4:26 
GeneralRe: Decode incorrectly when encode with unicode string Pin
Piotr Czekalski3-Apr-11 7:01
Piotr Czekalski3-Apr-11 7:01 
GeneralRe: Decode incorrectly when encode with unicode string Pin
Denys16-Aug-11 4:05
Denys16-Aug-11 4:05 
GeneralIndexOutOfRangeException on Encode Pin
Sergio_7922-Oct-10 0:24
Sergio_7922-Oct-10 0:24 
GeneralIndexOutOfRangeException Pin
Superman100113-Oct-10 23:00
Superman100113-Oct-10 23:00 
GeneralRe: IndexOutOfRangeException Pin
Omar Del Toro M.14-Oct-10 11:07
Omar Del Toro M.14-Oct-10 11:07 
AnswerRe: IndexOutOfRangeException Pin
pferril2-Nov-10 8:17
pferril2-Nov-10 8:17 
Try to increase the QRCodeVersion of the Encoder, goes from 1 to 40 ( in theory ) http://www.denso-wave.com/qrcode/vertable1-e.html[^]
GeneralRe: IndexOutOfRangeException Pin
dreamer_zl23-Nov-10 20:14
dreamer_zl23-Nov-10 20:14 
GeneralRe: IndexOutOfRangeException Pin
Milos Miladinovic25-Nov-10 1:05
Milos Miladinovic25-Nov-10 1:05 
AnswerRe: IndexOutOfRangeException Pin
Manadar29-Dec-10 4:06
Manadar29-Dec-10 4:06 
GeneralRe: IndexOutOfRangeException Pin
LaunaSere11-Mar-12 12:21
LaunaSere11-Mar-12 12:21 
GeneralRe: IndexOutOfRangeException Pin
pakirikus8-Jul-12 21:34
pakirikus8-Jul-12 21:34 
GeneralRe: IndexOutOfRangeException Pin
Member 998929215-Apr-13 6:14
Member 998929215-Apr-13 6:14 
GeneralMy vote of 5 Pin
Leontti Ramos6-Oct-10 16:19
Leontti Ramos6-Oct-10 16:19 
GeneralAnyone else having problems with lower case text encoding with this library Pin
Guy Swartwood4-Oct-10 8:18
Guy Swartwood4-Oct-10 8:18 
GeneralRe: Anyone else having problems with lower case text encoding with this library Pin
Superman10015-Oct-10 23:56
Superman10015-Oct-10 23:56 
GeneralRe: Anyone else having problems with lower case text encoding with this library Pin
Guy Swartwood6-Oct-10 4:03
Guy Swartwood6-Oct-10 4:03 
Question当version为30以上时,解码报错? Pin
jason_fang25-Sep-10 20:02
jason_fang25-Sep-10 20:02 
GeneralMy vote of 5 Pin
exergonic20-Sep-10 15:32
exergonic20-Sep-10 15:32 
GeneralMy vote of 4 Pin
Nathan Swann12-Sep-10 5:15
Nathan Swann12-Sep-10 5:15 
QuestionIf I want to add an other textbox, How should I do ?? Pin
harkkwon5-Sep-10 20:59
harkkwon5-Sep-10 20:59 
QuestionQR Code library called by a VB6 application Pin
mbarbaglia26-Aug-10 11:58
mbarbaglia26-Aug-10 11:58 
GeneralMy vote of 5 Pin
asingc20-Jul-10 14:20
asingc20-Jul-10 14:20 
GeneralHookup to webcam Pin
zeek7-Jul-10 2:37
zeek7-Jul-10 2:37 

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.