Download font files
download_font(id, output_dir, variants = NULL, ..., http_options = list())Id of the font, correspond to column id from get_all_fonts.
Output directory where to save font files.
Variant(s) to download, default is to includes all available ones.
Additional parameters to API query.
Arguments passed to crul::HttpClient$new.
a character vector of the filepaths extracted to, invisibly.
if (interactive()) {
# For example, we use a temporary directory
path_to_dir <- tempfile()
dir.create(path_to_dir)
# Download Roboto font
download_font(
id = "roboto",
output_dir = path_to_dir
)
# Get only regular, italic and bold
download_font(
id = "roboto",
output_dir = path_to_dir,
variants = c("regular", "300italic", "700")
)
# Clean up
unlink(path_to_dir, recursive = TRUE)
}