New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

11
Tools/ttfToWoff2.py Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# Dependencies:
# $ pip install fontTools
# $ pip install brotli
from fontTools.ttLib import TTFont
import sys
if len(sys.argv) != 2:
raise ValueError('Argumentos incorrectos:\n $ python ttfToWoff2.py fuente.tipo')
f = TTFont(sys.argv[1])
f.flavor='woff2'
f.save(sys.argv[1]+'.woff2')