Looking for free/opensource code or description of algorithms to code (simple) and decode (hard) the 2D barcode QR code.

It doesn't seem like a trivial problem, but it's so popular in Japan that there must be something already available...

link|improve this question

6  
Apparently the Japanese specification of QR codes is free, but the International Standards Committee (ISO), decided to charge over 200 Swiss francs for the English version. If the English version is just a translation of the Japanese one then I'd say for that price, it's totally unethical. – helloworlder Feb 24 '10 at 8:38
To understand the reed solomon error code specififcation used in qr code refer math.stackexchange.com/questions/76045/… – Sunny Nov 4 '11 at 5:27
feedback

14 Answers

up vote 6 down vote accepted

PyQrCodec is a Python library for encoding Qr codes to a PNG and decoding them from a variety of image formats.

link|improve this answer
13  
That link is dead. – Joe Hildebrand Oct 15 '10 at 19:19
Here's one (same?) pyqrcode.sourceforge.net – Prakash Sep 1 '11 at 13:20
feedback

I have a colleague who worked on ZXing ("Zebra Crossing").

That's got a fair variety of platform support.

link|improve this answer
1  
ZXing looks really nice. – Thorbjørn Ravn Andersen Mar 11 '10 at 9:16
feedback

(In response to those asking about QR codes in PHP)

The Google Charts QR chart type might work for you, if you don't expect a lot of traffic, or if you can cache the images. It's extremely easy to use- just put the text to encode in the URL.

link|improve this answer
feedback

Here's a good LGPL library for encoding QR code libqrencode

Libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.

Here's a Google code project that decodes QR code - aimed at iPhone, but is LGPL and the source is available. Should be adaptable...

link|improve this answer
1  
For those looking to encode and decode datamatrix codes (another common 2D barcode format) then libdmtx.sourceforge.net is a C library that encodes and decodes them. – Adam Davis Feb 15 '10 at 21:00
feedback

http://www.swetake.com/qr/qr1_en.html

Just thought I'd mention this one which is explaining HOW they work.

link|improve this answer
feedback

You can find c# example here http://twit88.com/home/opensource/qrcode for free (only need to register)

link|improve this answer
feedback

You can find detailed specification for QR code here.

link|improve this answer
feedback

http://www.qrcodegen.com You can create your private QR Codes easily.

link|improve this answer
1  
Totally not what the OP was asking about... – Bob Kruithof Jul 11 '11 at 4:32
feedback

Non-free SDK (C++/PHP): http://qrserver.com/software/

Free API: qrserver.com/api/documentation/create-qr-code/

Free Generator: goQr.me

link|improve this answer
feedback

If you want to use a different QR generator try try free QRtag api at http://api.QRtag.net

link|improve this answer
feedback

You can try python-qrtools: https://launchpad.net/qr-tools It uses qrencode for generating and zbar for decoding (from webcam or a file ;-)

link|improve this answer
feedback

You can use zbar directly to decode the qrcode.

#!/usr/bin/python

from sys import argv
import zbar
import Image


# create a reader
scanner = zbar.ImageScanner()

# configure the reader
scanner.parse_config('enable')

# obtain image data    
pil = Image.open("base.png").convert('L')
width, height = pil.size
raw = pil.tostring()

# wrap image data
image = zbar.Image(width, height, 'Y800', raw)

# scan the image for barcodes
scanner.scan(image)

# extract results
for symbol in image:
    # do something useful with results
    print 'decoded', symbol.type, 'symbol', '"%s"' % symbol.data

# clean up
del(image)
link|improve this answer
feedback

I normally use this one. Very easy to use, No registration, no sign up, just input what you need and done.

They also provide print quality QRCode, and GEO Location with Google Map, which is even better than ZXing official Project

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.