font_utils | R Documentation |
get_embedded_font()
returns which font is actually embedded
by cairo_pdf()
for a given character.
has_font()
tries to determine if a given font is available on the OS.
get_embedded_font(font, char)
has_font(font)
font |
A character vector of font(s). |
char |
A character vector of character(s) to be embedded by |
get_embedded_font()
depends on the suggested pdftools
package being installed
and R being compiled with Cairo support.
has_font()
depends on either the suggested systemfonts
(preferred) or pdftools
packages being installed.
get_embedded_font()
returns character vector of fonts that were actually embedded by cairo_pdf()
.
NA
's means no embedded font detected: this either means that no font
was found or that a color emoji font was found and instead of a font an image was embedded.
if (requireNamespace("pdftools", quietly = TRUE) &&
capabilities("cairo") &&
!piecepackr:::is_cairo_maybe_buggy()) {
chars <- c("a", "\u2666")
fonts <- c("sans", "Sans Noto", "Noto Sans", "Noto Sans Symbols2")
try(get_embedded_font(fonts, chars))
}
if (requireNamespace("systemfonts", quietly = TRUE) ||
(requireNamespace("pdftools", quietly = TRUE) &&
capabilities("cairo")) && !piecepackr:::is_cairo_maybe_buggy()) {
try(has_font("Dejavu Sans"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.