Skip to content

Instantly share code, notes, and snippets.

@matt-dray
Last active October 24, 2023 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matt-dray/eae574fa4bcb8c76fe875ece3fbdf47c to your computer and use it in GitHub Desktop.
Save matt-dray/eae574fa4bcb8c76fe875ece3fbdf47c to your computer and use it in GitHub Desktop.
Write a QR code to disk with {qrcode} and `png()`
png(
"~/Desktop/qr_test.png",
width = 5,
height = 5,
units = "cm",
res = 1200
)
qrcode::qr_code("https://www.matt-dray.com") |> plot()
dev.off()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment