runing
`#!/usr/bin/python
import sys
import pyqrcode
text = sys.argv[1]
scale = sys.argv[2]
err_prt = sys.argv[3]
url = pyqrcode.create(text,err_prt) # error_protection in ['L','M','H'] -- Low make code smaller
url.svg(sys.stdout, scale, module_color="black", quiet_zone=1)
exit(0)`
with 'text' 3 'M'
returns
<svg xmlns="http://www.w3.org/2000/svg" height="333333...." width="33333...."> <path></path> </svg>
I resolved this remeasuring o client side but ... maybe I am wrong
runing
with 'text' 3 'M'
returns
<svg xmlns="http://www.w3.org/2000/svg" height="333333...." width="33333...."> <path></path> </svg>I resolved this remeasuring o client side but ... maybe I am wrong