-
Notifications
You must be signed in to change notification settings - Fork 7
/
DESCRIPTION
30 lines (30 loc) · 1.08 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Package: qrencoder
Title: Quick Response Code (QR Code) / Matrix Barcode Creator
Version: 0.2.1
Authors@R: c(
person("Bob", "Rudis", email = "bob@rud.is", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-5670-2640")),
person("Kentaro", "Fukuchi", role=("ctb"), comment="libqrencoder")
)
Maintainer: Bob Rudis <bob@rud.is>
Description: Quick Response codes (QR codes) are a type of matrix bar code and can be
used to authenticate transactions, provide access to multi-factor authentication
services and enable general data transfer in an image. QR codes use four standardized
encoding modes (numeric, alphanumeric, byte/binary, and kanji) to efficiently store
data. Matrix barcode generation is performed efficiently in C via the included
'libqrencoder' library created by Kentaro Fukuchi.
Depends:
R (>= 3.1.0),
raster
License: GPL-2
LazyData: true
Suggests:
testthat
LinkingTo: Rcpp
Imports:
Rcpp,
base64enc,
png
URL: http://github.com/hrbrmstr/qrencoder
BugReports: https://github.com/hrbrmstr/qrencoder/issues
RoxygenNote: 6.0.1.9000