ttf-parser 0.2.1

A high-level, safe, zero-allocation TrueType font parser.
Documentation

ttf-parser

Build Status Crates.io Documentation

A high-level, safe, zero-allocation TrueType font parser.

Features

  • A high-level API.
  • Zero allocations.
  • Zero unsafe.
  • Zero dependencies.
  • Fast.
  • Stateless.
  • Simple and maintainable code (no magic numbers).

Supported TrueType features

Supported OpenType features

Methods' computational complexity

TrueType fonts designed for fast querying, so most of the methods are very fast. The main exception is glyph outlining. Glyphs can be stored using two different methods: using Glyph Data format and Compact Font Format (pdf). The first one is fairly simple which makes it faster to process. The second one is basically a tiny language with a stack-based VM, which makes it way harder to process. Currently, it takes 60% more time to outline all glyphs in SourceSansPro-Regular.otf (which uses CFF) rather than in SourceSansPro-Regular.ttf.

test outline_cff  ... bench:   1,652,606 ns/iter (+/- 2,795)
test outline_glyf ... bench:   1,004,866 ns/iter (+/- 1,545)

Here is some methods benchmarks:

test outline_glyph_276_from_cff  ... bench:       1,247 ns/iter (+/- 2)
test outline_glyph_276_from_glyf ... bench:         817 ns/iter (+/- 15)
test outline_glyph_8_from_cff    ... bench:         521 ns/iter (+/- 2)
test family_name                 ... bench:         398 ns/iter (+/- 2)
test from_data_otf               ... bench:         394 ns/iter (+/- 5)
test outline_glyph_8_from_glyf   ... bench:         360 ns/iter (+/- 7)
test from_data_ttf               ... bench:          96 ns/iter (+/- 3)
test glyph_index_u41             ... bench:          27 ns/iter (+/- 0)
test glyph_2_hor_metrics         ... bench:           8 ns/iter (+/- 0)

family_name is expensive, because it allocates a String and the original data is stored as UTF-16 BE.

Some methods are too fast, so we execute them 1000 times to get better measurements.

test x_height            ... bench:         847 ns/iter (+/- 0)
test units_per_em        ... bench:         564 ns/iter (+/- 2)
test strikeout_metrics   ... bench:         564 ns/iter (+/- 0)
test width               ... bench:         422 ns/iter (+/- 0)
test ascender            ... bench:         279 ns/iter (+/- 1)
test subscript_metrics   ... bench:         279 ns/iter (+/- 0)

Safety

  • The library must not panic. Any panic considered as a critical bug and should be reported.
  • The library forbids unsafe code.

Dependency

Rust >= 1.35

Alternatives

  • font-rs - Mainly a glyph outline extractor. No documentation. Has less features. Doesn't support CFF. Has a lot of magic numbers.
  • stb_truetype - Mainly a glyph outline extractor. Isn't allocation free. Has less features. Doesn't support CFF. Has a lot of magic numbers. Uses panic a lot.
  • truetype - Simply maps TrueType data to the Rust structures. Doesn't actually parses the data. Isn't allocation free. Has some unsafe.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.