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 라이선스에 따라 게시하는 데 동의하는 경우 자유롭게 코드를 푸시하세요.
MIT