ttf2woff2
v5.0.0
Convertissez les fichiers TTF en fichiers WOFF2.
Il s'agit d'un wrapper NodeJS pour le projet Google WOFF2. Si la compilation du wrapper C++ échoue, elle revient à une version Emscripten.
Installez ttf2woff2
globalement, puis :
cat font.ttf | ttf2woff2 > font.woff2
Sous Windows sans cat
, utilisez (en PowerShell) :
Start-Process - NoNewWindow - Wait ttf2woff2.cmd - RedirectStandardInput font.ttf - RedirectStandardOutput font.woff2
# OR
start-process - nnw - wait ttf2woff2.cmd - rsi font.ttf - rso font.woff2
import { readFile , writeFile } from 'node:fs/promises' ;
import ttf2woff2 from 'ttf2woff2' ;
const input = await readFile ( 'font.ttf' ) ;
await writeFile ( 'font.woff2' , ttf2woff2 ( input ) ) ;
N'hésitez pas à pousser votre code si vous acceptez la publication sous licence MIT.
MIT