Post #1503149
2026-04-17 07:45 UTC
@paulvanderlaan Try fonttools:
```
pyftsubset MyFont.otf \
--output-file=dehinted.otf \
--glyphs-file=<(python3 -c "from fontTools.ttLib import TTFont;
print('\n'.join(TTFont('MyFont.otf').getGlyphOrder()))") \
--no-hinting \
--desubroutinize \
--retain-gids \
--layout-features='*' \
--name-IDs='*' \
--notdef-outline \
--glyph-names \
--no-prune-unicode-ranges \
--no-prune-codepage-ranges
```
Replies (1)
-
@justvanrossum@typo.social 2026-04-17 09:13
@jlarmstrongiv @paulvanderlaan `--glyphs="*"` should also keep all glyphs.