| custom_create_PDF {baRcodeR} | R Documentation |
Input a vector or data frame of ID codes to produce a PDF of QR-coded labels that can then be printed. The PDF setup is for the ULINE 1.75" * 0.5" WEATHER RESISTANT LABEL for laser printer; item # S-19297 (uline.ca)
custom_create_PDF(user = FALSE, Labels = NULL, name = "LabelsOut", ErrCorr = "H", Fsz = 2.5, Across = TRUE, ERows = 0, ECols = 0, trunc = TRUE, numrow = 20, numcol = 4, page_width = 8.5, page_height = 11, width_margin = 0.25, height_margin = 0.5, x_space = 215, y_space = 182) barcode_make(Labels, trunc, ErrCorr, x_space, y_space, Fsz)
user |
logical. Run function using interactive mode (prompts user for
parameter values) Default is |
Labels |
vector or data frame object containing label names (i.e. unique ID codes). |
name |
character. Name of the PDF output file. Default is |
ErrCorr |
error correction value. Level of damage from low to high:
|
Fsz |
numerical. Sets font size using a number between |
Across |
logical. When |
ERows |
number of rows to skip. Default is |
ECols |
number of columns to skip. Default is |
trunc |
logical. Text is broken into multiple lines for longer ID codes,
to prevent printing off of the label area. Default is |
numrow |
numerical. Number of rows per page. Default is |
numcol |
numerical. Number of columns per page. Default is |
page_width |
numerical. Width of page (in inches). Default is set to |
page_height |
numerical. Height of page (in inches). Default is set to |
width_margin |
numerical. The width margin of the page (in inches).
Default is |
height_margin |
numerical. The height margin of the page (in inches).
Default is |
x_space |
numerical. An integer between |
y_space |
numerical. An integer between 80 and 215. Default is 182. |
barcode_make is the helper function generating the actual QR code and
creating the page layout for printed labels.
a PDF file containing QR-coded labels, saved to the default directory.