Downloads and caches the specified fonts (or default fonts) so they are available for PNG conversion without internet access.
Usage
install_fonts(
fonts = c("Jost", "Montserrat", "Roboto", "Open Sans"),
verbose = TRUE
)Examples
# \donttest{
install_fonts()
#>
#> ── Downloading fonts from Google Fonts ──
#>
#> ℹ Requires internet connection
#> ℹ Using curl package for downloads
#> ℹ Downloading "Jost"...
#> ✔ Jost (WOFF2)
#> ℹ Downloading "Jost"...
#> ✔ Downloading "Montserrat"... [7ms]
#>
#> ℹ Downloading "Montserrat"...
#> ✔ Montserrat (WOFF2)
#> ℹ Downloading "Montserrat"...
#> ✔ Downloading "Roboto"... [16ms]
#>
#> ℹ Downloading "Roboto"...
#> ✔ Roboto (WOFF2)
#> ℹ Downloading "Roboto"...
#> ✔ Downloading "Open Sans"... [12ms]
#>
#> ℹ Downloading "Open Sans"...
#> ✔ Open Sans (WOFF2)
#> ℹ Downloading "Open Sans"...
#>
#> ℹ Downloading "Open Sans"...
#> ── Summary
#> ℹ Downloading "Open Sans"...
#> ℹ Downloaded 4/4 fonts
#> ℹ Downloading "Open Sans"...
#> ℹ Cache: /Users/leite/Library/Caches/org.R-project.R/R/cardargus
#> ℹ Downloading "Open Sans"...
#> ✔ Downloading "Open Sans"... [15ms]
#>
install_fonts(c("Jost", "Roboto"))
#>
#> ── Downloading fonts from Google Fonts ──
#>
#> ℹ Requires internet connection
#> ℹ Using curl package for downloads
#> ℹ Downloading "Jost"...
#> ✔ Jost (WOFF2)
#> ℹ Downloading "Jost"...
#> ✔ Downloading "Roboto"... [5ms]
#>
#> ℹ Downloading "Roboto"...
#> ✔ Roboto (WOFF2)
#> ℹ Downloading "Roboto"...
#>
#> ℹ Downloading "Roboto"...
#> ── Summary
#> ℹ Downloading "Roboto"...
#> ℹ Downloaded 2/2 fonts
#> ℹ Downloading "Roboto"...
#> ℹ Cache: /Users/leite/Library/Caches/org.R-project.R/R/cardargus
#> ℹ Downloading "Roboto"...
#> ✔ Downloading "Roboto"... [20ms]
#>
# }