A QR code is a two-dimensional barcode developed by the Denso Wave company.
The current implementation handles three modes: numeric, alphanumeric and byte. Kanji is currently not supported. Please contact the maintainer if you need it.
LETTERS
, and the characters " "
(space), "$"
, "%"
, "*"
, "+"
, "-"
, "."
, "/"
and ":"
The main qr_code()
function returns an object of the qr_code
class. This is a logical matrix with specific methods for printing and plotting. The print version uses UTF-8 drawing symbols and the result depend on the font used. For a better quality QR code it best to use plot()
or generate_svg()
.
##
## ▗▄▄▄ ▗▗▄▄▄
## ▐▗▄▐ ▐▟▐▗▄▐
## ▐▐█▐▐▞▐▐▐█▐
## ▐▄▄▟▗▚▚▐▄▄▟
## ▗▖ ▄▖ ▖ ▗▖
## ▝▄▜▄▌▘▜▚▛▚█
## ▐▜█▚▀▐██▙▙▞
## ▗▄▄▄▐▄▞▖▗▟▄
## ▐▗▄▐▝▖▖▞▗▟▘
## ▐▐█▐ ▞█▛▄▐▄
## ▐▄▄▟▐▘▜▀▐▜▝
##
##
##
## use plot() for a better quality image
The qrcode
package is available from CRAN, R universe and GitHub.
# install from CRAN
install.packages("qrcode")
# install from R universe
install.packages("qrcode", repos = "https://thierryo.r-universe.dev")
# install from GitHub use the remotes package
remotes::install_github("ThierryO/qrcode")
The legacy function qrcode_gen()
has several known bugs. Do check any QR code you create with that function extra careful. Some of them will not work.
Because of these bugs, we re-implemented the code from scratch in version 0.1.4. We created new functions and left the old version in place. Please note that we deprecated the legacy functions. We plan to keep the deprecated functions around until at least June 2022. Update your code before that date.