#freetype #ffi #disabled #user

sys freetype-sys-nopng

Low level binding for FreeType font library (PNG support disabled)

1 unstable release

Uses new Rust 2024

new 0.24.0 Apr 25, 2025

#3 in #freetype


Used in 3 crates (via sf2g)

MIT license

5.5MB
119K SLoC

C 105K SLoC // 0.2% comments Visual Studio Project 9K SLoC // 0.0% comments Rust 1.5K SLoC // 0.0% comments Python 1.5K SLoC // 0.8% comments M4 691 SLoC // 0.4% comments Perl 422 SLoC // 0.1% comments Visual Studio Solution 405 SLoC Shell 251 SLoC // 0.2% comments AWK 142 SLoC Forge Config 38 SLoC // 0.8% comments JavaScript 34 SLoC // 0.3% comments HICAD 24 SLoC BASH 2 SLoC

(Fork of) freetype-sys Build Status

Low level bindings for the FreeType font library.

Statically linking against FreeType

If the bundled feature is enabled, freetype-sys will build and link a static copy of FreeType. This requires a C compiler. The included version of FreeType is 2.13.2.

[dependencies]
freetype-sys = { version = "0.21", features = ["bundled"] }

For Windows users

-pc-windows-gnu

In order to easily setup FreeType just get MSYS2 and install either the mingw-w64-x86_64-freetype or mingw-w64-i686-freetype package and then use Rust from within the correct MinGW shell of MSYS2.

More information on setting up MSYS2 for Rust can be found in the Rust installing from source document.

-pc-windows-msvc

Prebuilt libraries for FreeType are available here.

Then in the root of your project, in one of the parent directories, or in your home directory, create a .cargo directory. This directory should contain a config file that contains the following snippet:

[target.i686-pc-windows-msvc.freetype]
rustc-link-search = ["C:\\Path\\To\\binaries\\i686"]
rustc-link-lib = ["freetype"]

[target.x86_64-pc-windows-msvc.freetype]
rustc-link-search = ["C:\\Path\\To\\binaries\\x86_64"]
rustc-link-lib = ["freetype"]

For more information, check the official Cargo documentation.

Dependencies