The Application of bar code will become more and more extensive.Article(Http://www.systron.com.cn/txm-7.htm), write well! You can use your mobile phone to take a QR code. It is really nice to check the QR code! This will become a trend!
QR code identification on mobile phonesProgramI have done a good job, and "I checked" is very useful.
I have collected several two-dimensional code generation websites:
Http://www.morovia.com/free-online-barcode-generator/qrcode-maker.php
Http://qrencode.sinaapp.com/
Http://www.mayacode.com/
As a programmer, we also need to know how to create two-dimensional code codes.
The Elaphe module of Python helps us solve the problem.
From Elaphe Import Barcode
Def Get_barcode (Info ):
A = barcode ( ' Qrcode ' , Info, Options = dict (version = 9, eclevel = ' M ' ), Margin = 10, data_mode = ' 8 bits ' )
A. Show ()
If _ Name __ = ' _ Main __ ' :
Info = raw_input ( " Input a string: " )
Get_barcode (Info)
With python, everything becomes so simple!