ttf2woff2
v5.0.0
将 TTF 文件转换为 WOFF2 文件。
这是 Google WOFF2 项目的 NodeJS 包装器。如果 C++ 包装器编译失败,它将回退到 Emscripten 构建。
全局安装ttf2woff2
,然后:
cat font.ttf | ttf2woff2 > font.woff2
在没有cat
的 Windows 上,使用(在 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 许可证下发布,请随意推送您的代码。
麻省理工学院