Skip to content

Instantly share code, notes, and snippets.

@fatum12
Last active April 24, 2024 02:45
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fatum12/941a10f31ac1ad48ccbc to your computer and use it in GitHub Desktop.
Save fatum12/941a10f31ac1ad48ccbc to your computer and use it in GitHub Desktop.
Unpack .ttc and .dfont to .ttf using FontForge
#!/usr/local/bin/fontforge
# Usage: fontforge -script ttc2ttf.pe /path/to/font.ttc
fonts = FontsInFile($1)
n = SizeOf(fonts)
i = 0
while (i < n)
Open($1 + "(" + fonts[i] + ")", 1)
index = ToString(i + 1)
if (i < 9)
index = "0" + index
endif
ext = ".ttf"
if ($order == 3)
ext = ".otf"
endif
filename = $fontname + "-" + index + ext
Generate(filename)
Print(filename)
Close()
++i
endloop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment