mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
363 B
Plaintext
18 lines
363 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# fonttools
|
|
|
|
> Manipulate fonts in Python.
|
|
> More information: <https://fonttools.readthedocs.io/en/latest/>.
|
|
|
|
- Subset a TTF font file to the Basic Latin Unicode block:
|
|
|
|
`fonttools subset {{path/to/font.ttf}} --unicodes=U+0000-007F`
|
|
|
|
- Display help:
|
|
|
|
`fonttools --help`
|