c

cades

@preview

Generate QR codes in typst.

v0.3.1
MIT

Package Information

Last Updated

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/cades:0.3.1

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/cades:0.3.1": *

Version History

0.3.1
b6dbb30248ab...
0.3.0
1875c0d90326...
0.2.0
a0e1063cce27...

Cades

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)

Documentation

qr-code

Draw a qr code to an image.

Arguments

  • content: str - the content of the qr code
  • width: length|auto - the width of the qr code, default is auto
  • height: length|auto - the height of the qr code, default is auto
  • color: color - the color of the qrcode, default is black
  • background: color - the background color behind the qrcode, default is white
  • error-correction: "L"|"M"|"Q"|"H" - the error correction level for the qr code, default is "M"

Returns

The image, of type content.

Acknowledgements

This package uses Jogs by Wenzhuo Liu and the qr code rendering code is based on qrcode-svg by papnkukn.