Message 1 of 2
qr code code generation by python
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there any possible way to generate the QRCODE for the sheet number by python code.
\\
# Import QRCode from pyqrcode
import pyqrcode
import png
from pyqrcode import QRCode# String which represents the QR code
s = "C-03-STN-56789.dwg"
# Generate QR code
dn = pyqrcode.create(s)
# Create and save the svg file naming "myqr.svg"
dn.svg("myqr.svg", scale = 😎
# Create and save the png file naming "myqr.png"
dn.png('myqr.png', scale = 6)
\\
If it is possible pls explain.
Thanks and Regards
STM