0

Possible Duplicate:
Unicode Encoding and decoding issues in QRCode

I need to generate qr code offline , but I need a library which supports unicode ( arabic language for example ) ... It doesn't matter which language is it written in , but I prefer python and php.

can anyone suggest any? thank you

Community
  • 1
  • 1
Cyb3r
  • 187
  • 1
  • 1
  • 10
  • 1
    http://stackoverflow.com/questions/1612062/unicode-encoding-and-decoding-issues-in-qrcode – Peter Oct 25 '11 at 23:18

2 Answers2

1

ZXing has a Java-based encoder which will let you specify the character encoding you want to use to encode the text as bytes in the QR code. Be aware though that anything except ISO-8859-1 is not necessarily going to work, as this is the only encoding allowed in the spec.

Sean Owen
  • 66,182
  • 23
  • 141
  • 173
0

Have you tried http://phpqrcode.sourceforge.net ?

FMaz008
  • 11,161
  • 19
  • 68
  • 100