Font Version Status

The package provides a font toolbox.

Documentation

Example

```rust let path = "SourceSerifPro-Regular.otf"; let file = File::open(path).unwrap(); let font = &file.fonts[0];

asserteq!(font.unitsperem, 1000); asserteq!(font.ascender, 918); assert_eq!(font.descender, -335); ```

Contribution

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.