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

 
QuestionGreat Job Pin
andrew_sa16-Apr-13 6:09
andrew_sa16-Apr-13 6:09 
GeneralMy vote of 3 Pin
Gaurav.WhiteLotus7-Mar-13 23:13
Gaurav.WhiteLotus7-Mar-13 23:13 
GeneralRe: My vote of 3 Pin
Gaurav.WhiteLotus28-Jun-13 8:46
Gaurav.WhiteLotus28-Jun-13 8:46 
QuestionError Pin
bebo_s_802-Mar-13 22:47
bebo_s_802-Mar-13 22:47 
GeneralMy vote of 5 Pin
peteSJ13-Feb-13 17:41
peteSJ13-Feb-13 17:41 
QuestionInput string length Pin
chrisawoods29-Jan-13 4:37
chrisawoods29-Jan-13 4:37 
AnswerMessage Closed Pin
25-Mar-13 23:14
Nikeduban25-Mar-13 23:14 
QuestionHow to scan QR Code using Webcam in this library plz help PinPopular
Rohit Nagbhidkar24-Jan-13 1:30
Rohit Nagbhidkar24-Jan-13 1:30 
hi guys i am making a program to scan qr code from webcam in real time and if the program scans qr code then it will save it to database
i have tried with emgu cv stuff bt it gave exceptions when not found in each frame making program unstable
is there is any way for that??

here is my code...
runnable bt very slow..Frown | :(

Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Imports System.Drawing.Imaging

Imports ThoughtWorks.QRCode.Codec
Imports ThoughtWorks.QRCode.Codec.Data
Imports ThoughtWorks.QRCode.Codec.Util
Imports Emgu.CV
Imports Emgu.CV.Structure
Imports Emgu.Util

Public Class Form1
Dim picDecode As Image
Dim Capturez0 As Capture = New Capture(0)

Dim imagez0 As Image(Of Bgr, Byte)



Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

imagez0 = Capturez0.RetrieveBgrFrame
Dim att As New numTryDecode.QRCodeDecoder
PictureBox1.Image = imagez0.ToBitmap()
Try
Dim decoder As New QRCodeDecoder()
'QRCodeDecoder.Canvas = New ConsoleCanvas()
Dim decodedString As [String] = decoder.decode(New QRCodeBitmapImage(New Bitmap(imagez0.ToBitmap())))
txtDecodedData.Text = decodedString

Catch ex As Exception
'MessageBox.Show(ex.Message)
End Try
End Sub


Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

End Sub
End Class

plz help
QuestionOther barcode types Pin
JBoada3-Jan-13 16:45
JBoada3-Jan-13 16:45 
GeneralMy vote of 5 Pin
JBoada3-Jan-13 16:38
JBoada3-Jan-13 16:38 
BugInvalid version in decode Pin
Member 954616112-Nov-12 11:13
Member 954616112-Nov-12 11:13 
QuestionRDLC Report Pin
TintinLille11-Nov-12 0:32
TintinLille11-Nov-12 0:32 
AnswerMessage Closed Pin
1-Apr-13 22:35
Nikeduban1-Apr-13 22:35 
QuestionHow to set CorrectionLevel and Version for Encoding? Pin
Member 94732758-Nov-12 22:34
Member 94732758-Nov-12 22:34 
QuestionHow to use this? Pin
Member 94732757-Nov-12 16:30
Member 94732757-Nov-12 16:30 
QuestionVersion for Visual Basic 6 (VB6) Pin
LuigiIT2-Nov-12 22:11
LuigiIT2-Nov-12 22:11 
GeneralMy vote of 5 Pin
Giovefi18-Oct-12 6:59
Giovefi18-Oct-12 6:59 
QuestionGreat job Pin
analog99917-Oct-12 6:53
analog99917-Oct-12 6:53 
QuestionNot decoding QR code from scanned Image Pin
Jaydeep Jadav12-Oct-12 20:12
Jaydeep Jadav12-Oct-12 20:12 
AnswerRe: Not decoding QR code from scanned Image Pin
Jaydeep Jadav18-Oct-12 19:20
Jaydeep Jadav18-Oct-12 19:20 
QuestionUTF8 posing problem. Pin
Asnarpbio2-Oct-12 21:27
Asnarpbio2-Oct-12 21:27 
Questionwhere is QRVerToDataSize ? Pin
steve mettraux27-Sep-12 5:24
steve mettraux27-Sep-12 5:24 
QuestionProject Converted In VS 2010 Gives Build Error Pin
aqibsd22-Aug-12 23:46
aqibsd22-Aug-12 23:46 
AnswerRe: Project Converted In VS 2010 Gives Build Error Pin
cllamed14-Sep-12 6:37
cllamed14-Sep-12 6:37 
QuestionError if Encode more than 124 characters Pin
Vivek Deshmukh13-Aug-12 2:16
Vivek Deshmukh13-Aug-12 2:16 

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.