Learn R Programming

⚠️There's a newer version (1.2.3) of this package.Take me there.

systemfonts

systemfonts is a package that locates installed fonts. It uses the system-native libraries on Mac (CoreText) and Linux (FontConfig), and uses Freetype to parse the fonts in the registry on Windows.

Installation

systemfonts is available from CRAN using install.packages('systemfonts'). It is however still under development and you can install the development version using devtools.

# install.packages('devtools')
devtools::install_github('r-lib/systemfonts')

Examples

The main use of this package is to locate font files based on family and style:

library(systemfonts)

match_font('Avenir', italic = TRUE)
#> $path
#> [1] "/System/Library/Fonts/Avenir.ttc"
#> 
#> $index
#> [1] 1
#> 
#> $features
#> NULL

This function returns the path to the file holding the font, as well as the 0-based index of the font in the file.

It is also possible to get a data.frame of all available fonts:

system_fonts()
#> # A tibble: 830 x 9
#>    path             index name     family   style  weight width italic monospace
#>    <chr>            <int> <chr>    <chr>    <chr>  <ord>  <ord> <lgl>  <lgl>    
#>  1 /System/Library…     2 Rockwel… Rockwell Bold   bold   norm… FALSE  FALSE    
#>  2 /System/Library…     0 Notewor… Notewor… Light  normal norm… FALSE  FALSE    
#>  3 /Users/thomas/L…     0 SourceS… Source … Bold … bold   norm… TRUE   FALSE    
#>  4 /System/Library…     1 Devanag… Devanag… Bold   bold   norm… FALSE  FALSE    
#>  5 /System/Library…     0 Kannada… Kannada… Regul… normal norm… FALSE  FALSE    
#>  6 /System/Library…     0 Verdana… Verdana  Bold   bold   norm… FALSE  FALSE    
#>  7 /System/Library…     8 ArialHe… Arial H… Light  light  norm… FALSE  FALSE    
#>  8 /Users/thomas/L…     0 FiraSan… Fira Sa… Light… normal norm… TRUE   FALSE    
#>  9 /System/Library…    10 AppleSD… Apple S… Thin   thin   norm… FALSE  FALSE    
#> 10 /System/Library…     0 DecoTyp… DecoTyp… Regul… normal norm… FALSE  FALSE    
#> # … with 820 more rows

Further, you can query additional information about fonts and specific glyphs, if that is of interest using the font_info() and glyph_info() functions.

C API

While getting this information in R is nice, the intended use is mostly through compiled code so that graphic devices can easily locate relevant font files etc.

In order to use functions from systemfonts in C(++) code your package should list systemfonts in the LinkingTo field in the DESCRIPTION file. Once this is done you can now #include <systemfonts.h> in your code and use the provided functions. Look into the inst/include/systemfonts.h file to familiarise yourself with the C API.

System Defaults

systemfonts will always try to find a font for you, even if none exist with the given family name or style. How it resolves this is system specific and should not be relied on, but it can be expected that a valid font file is always returned no matter the input.

A few special aliases exist that behaves predictably but system dependent:

  • "" and "sans" return Helvetica on Mac, Arial on Windows, and the default sans-serif font on Linux (DejaVu Sans on Ubuntu)
  • "serif" return Times on Mac, Times New Roman on Windows, and the default serif font on Linux (DejaVu Serif on Ubuntu)
  • "mono" return Courier on Mac, Courier New on Windows, and the default mono font on Linux (DejaVu Mono on Ubuntu)
  • "emoji" return Apple Color Emoji on Mac, Segoe UI Emoji on Windows, and the default emoji font on Linux (Noto Color on Ubuntu)

Code of Conduct

Please note that the ‘systemfonts’ project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('systemfonts')

Monthly Downloads

951,355

Version

1.0.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Thomas Lin Pedersen

Last Published

February 9th, 2021

Functions in systemfonts (1.0.1)

str_split_emoji

Split a string into emoji and non-emoji glyph runs
systemfonts-package

systemfonts: System Native Font Finding
system_fonts

List all fonts installed on your system
string_widths_dev

Get string widths as measured by the current device
get_fallback

Get location of the fallback font
string_width

Calculate the width of a string, ignoring new-lines
string_metrics_dev

Get string metrics as measured by the current device
font_fallback

Get the fallback font for a given string
reset_font_cache

Reset the system font cache
register_variant

Register a font as a variant as an existing one
font_info

Query font-specific information
font_feature

Define OpenType font feature settings
glyph_info

Query glyph-specific information from fonts
match_font

Find a system font by name and style
register_font

Register font collections as families
shape_string

Calculate glyph positions for strings