ttf2woff2
v5.0.0
Konvertieren Sie TTF-Dateien in WOFF2-Dateien.
Dies ist ein NodeJS-Wrapper für das Google WOFF2-Projekt. Wenn die C++-Wrapper-Kompilierung fehlschlägt, wird auf einen Emscripten-Build zurückgegriffen.
Installieren Sie ttf2woff2
global, dann:
cat font.ttf | ttf2woff2 > font.woff2
Verwenden Sie unter Windows ohne cat
(in 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 ) ) ;
Sie können Ihren Code gerne pushen, wenn Sie mit der Veröffentlichung unter der MIT-Lizenz einverstanden sind.
MIT