ttf2woff2
v5.0.0
تحويل ملفات TTF إلى ملفات WOFF2.
هذا هو غلاف NodeJS لمشروع Google WOFF2. إذا فشلت عملية التحويل البرمجي المجمعة لـ C++، فإنها ترجع إلى بنية Emscripten.
قم بتثبيت ttf2woff2
عالميًا، ثم:
cat font.ttf | ttf2woff2 > font.woff2
على نظام التشغيل Windows بدون cat
، استخدم (في 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 ) ) ;
لا تتردد في دفع الكود الخاص بك إذا كنت توافق على النشر بموجب ترخيص MIT.
معهد ماساتشوستس للتكنولوجيا