Click here to Skip to main content
6,594,432 members and growing! (14,575 online)
Email Password   helpLost your password?
Languages » C# » How To     Intermediate License: The Code Project Open License (CPOL)

Open Source QRCode Library

By twit88

How to use QRCode library to encode and decode QRCode
C# 2.0.NET 2.0, WinXP, Win2003VS2005, Dev
Posted:20 Sep 2007
Views:95,098
Bookmarked:74 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
27 votes for this article.
Popularity: 6.28 Rating: 4.39 out of 5
1 vote, 3.7%
1

2
1 vote, 3.7%
3
3 votes, 11.1%
4
22 votes, 81.5%
5
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

  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)

About the Author

twit88


Member
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.

Homepage
http://twit88.com/home

Blog
http://twit88.com/blog
Occupation: Web Developer
Location: Malaysia Malaysia

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 61 (Total in Forum: 61) (Refresh)FirstPrevNext
GeneralLibrary Pinmembermycronichead18:17 11 Oct '09  
GeneralInvalid number of find pattern detected Error when decoding qr code version 5 and size 2 correction level Musing Pinmemberhamletj21:32 8 Oct '09  
GeneralRe: Invalid number of find pattern detected Error when decoding qr code version 5 and size 2 correction level Musing Pinmembericymint32hrs 54mins ago 
GeneralOpen Source QRCode Library Pinmemberyanchisanren18:36 28 Aug '09  
GeneralIt can't work with Chinese font!! Pinmemberhrmai4:52 8 Aug '09  
AnswerRe: It can't work with Chinese font!! PinmemberJackyFan15:49 23 Sep '09  
QuestionRe: It can't work with Chinese font!! Pinmembersunshinerao5:58 6 Oct '09  
GeneralWeb Usage Guidance Pinmemberjon.waller11:37 11 Jun '09  
GeneralProblem building program Pinmemberanwaar113:37 30 May '09  
GeneralRe: Problem building program Pinmembertammeniit1:14 31 Jul '09  
GeneralThank You Pinmemberamgadhs12:08 15 May '09  
Generalwtf PinmemberMember 603819614:54 9 May '09  
GeneralIndexOutOfRangeException in rsTemp [modified] Pinmemberaprilkacau3:29 10 Apr '09  
RantRe: IndexOutOfRangeException in rsTemp Pinmemberaprilkacau13:07 13 Apr '09  
GeneralRe: IndexOutOfRangeException in rsTemp Pinmemberjonataspc8:17 30 Jul '09  
AnswerRe: IndexOutOfRangeException in rsTemp [modified] PinmemberJackyFan18:55 22 Sep '09  
GeneralIs this free? PinmemberCarl00721:16 22 Mar '09  
GeneralRe: Is this free? Pinmemberaprilkacau19:57 25 Mar '09  
GeneralRe: Is this free? PinmemberCarl00716:20 26 Mar '09  
GeneralError on VisualStudio 2008 PinmemberMarco Tugnoli5:33 19 Mar '09  
GeneralRe: Error on VisualStudio 2008 Pinmemberaprilkacau19:55 25 Mar '09  
GeneralResources.GetResource Pinmemberaprilkacau7:15 16 Mar '09  
GeneralRe: Resources.GetResource Pinmembergdhaifeng6:29 25 Mar '09  
GeneralRe: Resources.GetResource Pinmembergdhaifeng6:43 25 Mar '09  
GeneralRe: Resources.GetResource Pinmemberaprilkacau19:50 25 Mar '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 20 Sep 2007
Editor: Deeksha Shenoy
Copyright 2007 by twit88
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project