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

 
QuestionSome Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Member 10368544 - Robert Obergfoll6-Mar-15 19:41
Member 10368544 - Robert Obergfoll6-Mar-15 19:41 
AnswerRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
YorkHwe8-Apr-15 22:17
YorkHwe8-Apr-15 22:17 
GeneralRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Member 1099764310-Apr-15 1:59
Member 1099764310-Apr-15 1:59 
GeneralRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Mario Gluscic17-Apr-15 14:35
Mario Gluscic17-Apr-15 14:35 
GeneralRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Aoyama Son9-Aug-20 14:06
Aoyama Son9-Aug-20 14:06 
AnswerRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Cypher72017-Apr-15 10:05
Cypher72017-Apr-15 10:05 
GeneralRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Mario Gluscic17-Apr-15 14:35
Mario Gluscic17-Apr-15 14:35 
AnswerRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Member 1201398726-Sep-15 17:06
Member 1201398726-Sep-15 17:06 
AnswerRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Member 1046191619-Mar-21 22:34
Member 1046191619-Mar-21 22:34 
AnswerRe: Some Errors and functionality not working - Fixed for Developer Studio 2012 Pin
Member 1046191619-Mar-21 23:34
Member 1046191619-Mar-21 23:34 
Questionfile is being used by another process, attempting to rename Pin
d200520-Feb-15 6:22
d200520-Feb-15 6:22 
QuestionOne question regarding Data store Pin
Tridip Bhattacharjee11-Feb-15 0:46
professionalTridip Bhattacharjee11-Feb-15 0:46 
Generalrequest Pin
Member 1130541314-Dec-14 22:33
Member 1130541314-Dec-14 22:33 
Questionlittle code change to support Chinese string Pin
DavidGzp29-Nov-14 11:14
DavidGzp29-Nov-14 11:14 
Questionbug for a particular string Pin
msilenius122-Oct-14 18:55
msilenius122-Oct-14 18:55 
QuestionNICE!! Pin
mithunmf11-Oct-14 4:28
mithunmf11-Oct-14 4:28 
QuestionExcellent Pin
Member 1109038217-Sep-14 13:48
Member 1109038217-Sep-14 13:48 
Questiongreat Pin
Moonaly24-Aug-14 19:45
Moonaly24-Aug-14 19:45 
GeneralExcellent work, 2 thumbs up Pin
deaironi25-Jul-14 20:21
deaironi25-Jul-14 20:21 
QuestionSolution to encode and decode Unicode Pin
Budsy29-Mar-14 20:08
Budsy29-Mar-14 20:08 
AnswerRe: Solution to encode and decode Unicode Pin
MuhammadUSman121-Aug-14 21:56
MuhammadUSman121-Aug-14 21:56 
QuestionTry to encode the error QR image Pin
vknguyen199213-Mar-14 0:22
vknguyen199213-Mar-14 0:22 
QuestionA good effort but no longer works Pin
replaysMike7-Mar-14 20:20
replaysMike7-Mar-14 20:20 
QuestionCyrillic Pin
Shaitan-Babay4-Mar-14 22:24
Shaitan-Babay4-Mar-14 22:24 
QuestionError Pin
lbdalmendray13-Feb-14 7:32
lbdalmendray13-Feb-14 7:32 

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.