PythonでQRコードを作成する手順及びサンプルコードです。
ライブラリインストール
pip install PyQRCode
pip install pypng
QRコード作成
import pyqrcode
def main_logic():
target_text = 'https://docs.saurus12.com/python/qrcode'
output_png_file = 'c:/tmp/test.png'
code = pyqrcode.create(target_text, error='L', version=3, mode='binary')
code.png(output_png_file, scale=5, module_color=[0, 0, 0, 128], background=[255, 255, 255])
main_logic()
本記事へのリンク
https://docs.saurus12.com/python/qrcode
👇参考URL
[keywords]
Python QRコード
更新日:2024/01/09