備忘錄_20160105(定位) 修改 回首頁

程式 2025-03-27 11:44:06 1743047046 100
QR Code 產生器 - 使用Python

QR Code 產生器 - 使用Python

# sudo apt install python3-qrcode

import qrcode

# vCard 內容(確保使用 CRLF 換行)
vcard = """BEGIN:VCARD\r
VERSION:3.0\r
FN:John Doe\r
ORG:Example Corp\r
TEL:+1234567890\r
EMAIL:john.doe@example.com\r
END:VCARD"""

# 產生 QR Code
qr = qrcode.make(vcard)

# 儲存 QR Code 圖片
qr.save("vcard_qrcode.png")

print("QR Code 已成功產生!")