ttf2woff2
v5.0.0
Convierte archivos TTF a WOFF2.
Este es un contenedor de NodeJS para el proyecto Google WOFF2. Si la compilación del contenedor C++ falla, recurre a una compilación de Emscripten.
Instale ttf2woff2
globalmente, luego:
cat font.ttf | ttf2woff2 > font.woff2
En Windows sin cat
, use (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 ) ) ;
No dude en enviar su código si está de acuerdo con la publicación bajo la licencia MIT.
MIT