R/font_family_exists.R

Defines functions default_sys_fonts sys_fonts font_family_exists

Documented in font_family_exists sys_fonts

#' @title Check if font family exists.
#'
#' @description Check if a font family exists in available fonts.
#'
#' @return A logical value
#' @param font_family font family name (case sensitive)
#' @param system_only If `TRUE`, only look in system-installed fonts
#'   (as returned by [systemfonts::system_fonts()]). This is useful
#'   to verify that a font will be found by fontconfig, which is the
#'   font resolution mechanism used by Cairo devices at rendering
#'   time. When `FALSE` (the default), both system and registered
#'   fonts are considered.
#' @examples
#' font_family_exists("sans")
#' font_family_exists("Arial")
#' font_family_exists("Courier")
#' font_family_exists("Arial", system_only = TRUE)
#' @export
font_family_exists <- function(font_family = "sans", system_only = FALSE) {
  if (system_only) {
    families <- c(system_fonts()$family, default_sys_fonts()$family)
  } else {
    families <- sys_fonts()$family
  }
  tolower(font_family) %in% tolower(families)
}

#' @title List fonts for 'systemfonts'.
#'
#' @description List system and registry fonts into a data.frame
#' containing columns such as path, family, style, weight and italic.
#' @return A data.frame of font information.
#' @examples
#' sys_fonts()
#' @export
#' @importFrom systemfonts system_fonts registry_fonts
sys_fonts <- function() {
  db_sys <- system_fonts()
  db_reg <- registry_fonts()
  nam <- intersect(colnames(db_sys), colnames(db_reg))
  db_sys <- db_sys[, nam]
  db_reg <- db_reg[, nam]
  font_db <- rbind(db_sys, db_reg, default_sys_fonts())
  font_db
}

default_sys_fonts <- function() {
  dat <- data.frame(
    path = rep(NA_character_, 16),
    index = rep(NA_integer_, 16),
    family = rep(c("sans", "serif", "mono", "symbol"), each = 4),
    style = rep(c("Regular", "Bold", "Italic", "Bold Italic"), 4),
    weight = rep(c("normal", "bold", "normal", "bold"), 4),
    italic = rep(c(FALSE, FALSE, TRUE, TRUE), 4),
    stringsAsFactors = FALSE
  )
  res <- match_fonts(
    family = dat$family,
    weight = dat$weight,
    italic = dat$italic
  )
  dat$path <- res$path
  dat$index <- res$index
  dat
}

Try the gdtools package in your browser

Any scripts or data that you put into this service are public.

gdtools documentation built on May 26, 2026, 1:06 a.m.