#font #wrapper #search

fontconfig

Safe, higher-level wrapper around the Fontconfig library

9 releases (breaking)

0.8.0 Jan 18, 2024
0.7.0 Nov 21, 2023
0.6.0 Oct 18, 2022
0.5.0 Mar 17, 2022
0.0.1 Dec 11, 2014

#100 in Text processing

Download history 125/week @ 2024-01-01 172/week @ 2024-01-08 274/week @ 2024-01-15 82/week @ 2024-01-22 130/week @ 2024-01-29 76/week @ 2024-02-05 67/week @ 2024-02-12 149/week @ 2024-02-19 217/week @ 2024-02-26 168/week @ 2024-03-04 260/week @ 2024-03-11 211/week @ 2024-03-18 158/week @ 2024-03-25 332/week @ 2024-04-01 188/week @ 2024-04-08 223/week @ 2024-04-15

928 downloads per month
Used in 4 crates

MIT license

55KB
1K SLoC

fontconfig


A wrapper around freedesktop.org's Fontconfig library, for locating fonts on UNIX-like systems such as Linux and BSD. Requires Fontconfig to be installed.

Dependencies

  • Alpine Linux: fontconfig-dev
  • Arch Linux: fontconfig
  • Debian-based systems: libfontconfig1-dev
  • FreeBSD: fontconfig
  • Void Linux: fontconfig-devel

Usage

main.rs:

use fontconfig::Fontconfig;

fn main() {
    let fc = Fontconfig::new().unwrap();
    // `Fontconfig::find()` returns `Option` (will rarely be `None` but still could be)
    let font = fc.find("freeserif", None).unwrap();
    // `name` is a `String`, `path` is a `Path`
    println!("Name: {}\nPath: {}", font.name, font.path.display());
}

You could then, for example, use font.path to create a GlyphCache from opengl_graphics and pass it to conrod.

Cargo Features

Feature Description Default Enabled Extra Dependencies
dlopen dlopen libfontconfig at runtime

The dlopen feature enables building this crate without dynamically linking to the Fontconfig C library at link time. Instead, Fontconfig will be dynamically loaded at runtime with the dlopen function. This can be useful in cross-compiling situations as you don't need to have a version of Fontcofig available for the target platform available at compile time.

Other Fontconfig Crates

  • servo-fontconfig — This crate provides a low-level interface only. It depends on servo-fontconfig-sys, which will fall back to building a vendored version of Fontconfig if a compatible version can't be found. It in-turn depends on expat-sys, which does the same thing regarding a vendored version of Expat. This makes it easier if you are distributing a code base that needs Fontconfig, but provides less control over the libraries that will be used.
  • fontconfig-sys — superseded by yeslogic-fontconfig-sys.
  • yeslogic-fontconfig — This crate was previously published under this name before we were given to publish it as fontconfig.

For our needs in Prince we wanted higher-level bindings that did not fall back on vendored versions of libraries, which is what the crates in this repo provide.

Credits

Thanks to Austin Bonander for originally creating the fontconfig crate and allowing us to publish ours under that name.

Dependencies

~0.2–6MB