Click here to Skip to main content
Click here to Skip to main content

Open Source QRCode Library

By , 20 Sep 2007
 
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
Web Developer
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.
 
Homepage
http://twit88.com/home
 
Blog
http://twit88.com/blog

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Suggestioni hope , have help manual Pinmembercheng11011018-Jun-13 0:22 
Questionhow to create qr code automatically send sms PinmemberDư Bùi10-Jun-13 23:44 
GeneralMy vote of 5 PinmemberMember 97166372-Jun-13 22:57 
QuestionHow do i use it? PinmemberAlexander Weis31-May-13 10:04 
GeneralMy vote of 5 Pinmembernummer3131-May-13 8:47 
QuestionAbout QR COde PinmemberMohsin Azam25-May-13 19:44 
Questiongood Pinmemberlinweneson14-May-13 23:20 
Questioncan't read result qrcode string PinmemberStutt10-May-13 4:00 
BugError correction PinmemberMember 94134417-May-13 6:06 
QuestionGreat Job Pinmemberandrew_sa16-Apr-13 6:09 
GeneralMy vote of 3 PinmemberGaurav.WhiteLotus7-Mar-13 23:13 
GeneralRe: My vote of 3 Pinmembersdafsafss224-Apr-13 16:17 
QuestionError Pinmemberbebo_s_802-Mar-13 22:47 
GeneralMy vote of 5 PinmemberpeteSJ13-Feb-13 17:41 
QuestionInput string length Pinmemberchrisawoods29-Jan-13 4:37 
AnswerMessage Automatically Removed PinmemberNikeduban25-Mar-13 23:14 
QuestionHow to scan QR Code using Webcam in this library plz help PinmemberRohit Nagbhidkar24-Jan-13 1:30 
Questionqr code library PinmemberTarcode Michael15-Jan-13 15:25 
QuestionOther barcode types PinmemberJBoada3-Jan-13 16:45 
GeneralMy vote of 5 PinmemberJBoada3-Jan-13 16:38 
BugInvalid version in decode PinmemberMember 954616112-Nov-12 11:13 
QuestionRDLC Report PinmemberTintinLille11-Nov-12 0:32 
AnswerMessage Automatically Removed PinmemberNikeduban1-Apr-13 22:35 
QuestionHow to set CorrectionLevel and Version for Encoding? PinmemberMember 94732758-Nov-12 22:34 
QuestionHow to use this? PinmemberMember 94732757-Nov-12 16:30 

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 20 Sep 2007
Article Copyright 2007 by twit88
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid