Draw QR codes in typst.
#import "@preview/cades:0.3.1": qr-code
= QR Code for `typst.app`:
#qr-code("https://typst.app", width: 3cm)
Draw a qr code to an image.
content:str- the content of the qr codewidth:length|auto- the width of the qr code, default isautoheight:length|auto- the height of the qr code, default isautocolor:color- the color of the qrcode, default isblackbackground:color- the background color behind the qrcode, default iswhiteerror-correction:"L"|"M"|"Q"|"H"- the error correction level for the qr code, default is"M"
The image, of type content.
This package uses Jogs by Wenzhuo Liu and the qr code rendering code is based on qrcode-svg by papnkukn.