Learn R Programming

qrcode (version 0.2.2)

generate_svg: Generate the QR code as an svg file

Description

Create the QR code using qr_code() and save it as an svg file.

Usage

generate_svg(
  qrcode,
  filename,
  size = 300,
  foreground = "black",
  background = "white",
  show = interactive(),
  ...
)

# S3 method for default generate_svg( qrcode, filename, size = 300, foreground = "black", background = "white", show = interactive(), ... )

# S3 method for qr_code generate_svg( qrcode, filename, size = 300, foreground = "black", background = "white", show = interactive(), ... )

# S3 method for qr_wifi generate_svg( qrcode, filename, size = 300, foreground = "black", background = "white", show = interactive(), ..., fontsize = 15 )

# S3 method for qr_logo generate_svg( qrcode, filename, size = 300, foreground = "black", background = "white", show = interactive(), ... )

Value

invisible NULL

Arguments

qrcode

a qr_code object as generated by qr_code.

filename

Where to store the QR code as svg file. Silently overwrites existing files. Tries to create the path, when it doesn't exist.

size

width of the svg file in pixels. Defaults to 300.

foreground

Stroke and fill colour for the foreground. Use a valid CSS colour. Defaults to "black".

background

Fill colour for the background. Use a valid CSS colour. Defaults to "white".

show

Open the file after creating it. Defaults to TRUE on interactive() sessions, otherwise FALSE.

...

Currently ignored.

fontsize

The size of the font in pixels.

Author

Thierry Onkelinx

See Also

Other qr: coordinates(), plot.qr_code(), print.qr_code(), qr_code(), qr_event(), qr_wifi()

Examples

Run this code
code <- qr_code("HELLO WORLD")
generate_svg(
  qrcode = code, filename = tempfile(fileext = ".svg"), show = FALSE
)

Run the code above in your browser using DataLab