Cesare Gilento
Cesare Gilento
> On the to do list! I have actually been considering a standalone tool to rename fonts because we need this for other things. > > Here is a Python...
Yes! I will add an option to allow the user choose if changing the family name or leave it as is.
Done, seems working: 
With EB Garamond, you can use the `updateFontNames` option. instancer.instantiateVariableFont(font, inst.coordinates, updateFontNames=True).save(out_name)
Try this: https://github.com/ftCLI/ftCLI#ftcli-vf2i By default, it exports all named instances unless you choose to select a custom instance.
`ftcli converter ttc2sfnt` can do it: ``` Usage: ftcli converter ttc2sfnt [OPTIONS] INPUT_PATH Extracts each font from a TTC file, and saves it as a TTF or OTF file. Options:...
Could you provide an example with a font and the desired output?
Thanks! Got it now. Probably such a tool could go under `ftcli utils`, or maybe could be a `--cleanup` option of `ttc2sfnt`. It won't be fast, I'm rewriting the CLI...
Using `varLib.instancer` works without removing the `DSIG` table, but the instancer cannot update the `name` table. In line 225 of `varLib.instancer.names`, `None` is returned because `platformID` 1 is parsed before...
I Have no idea of how to open a PR in a repository that is not mine (sorry, just a hobbist here). I tried to push a snippet few days...