PythonでQRコード生成

環境構築手順

libqrencodeのpython bindingによるQRコード生成

まずはinstall

% sudo aptitude install libqrencode3 libqrencode-dev
% pip install qrencode

動作確認

サンプルコード

import qrencode

e = Encoder()
image = e.encode('http://tanarky.com/', { 'width': 100 })
image.save("/tmp/qrcode.png")

blog comments powered by Disqus


© 2011 tanarky

Related Posts Plugin for WordPress, Blogger...