ttf2woff2
v5.0.0
Converta arquivos TTF em WOFF2.
Este é um wrapper NodeJS para o projeto Google WOFF2. Se a compilação do wrapper C++ falhar, ele retornará para uma compilação do Emscripten.
Instale ttf2woff2
globalmente e então:
cat font.ttf | ttf2woff2 > font.woff2
No Windows sem cat
, use (no 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 ) ) ;
Sinta-se à vontade para enviar seu código se concordar com a publicação sob a licença do MIT.
MIT