subsetty
1.0.0
使用 fonttools 对节点的字体进行子集化
npm install subsetty
子集采用两个参数:字体和子集文本。使用 Ramda join('', uniq(subset))
过滤的子集文本将删除所有重复的字符。
需要 Python 2.7、3.4 或更高版本!
import { subset , toWoff } from './index'
subset ( buffer , 'hello world' )
. then ( font => /* do something with the font buffer */ )
toWoff ( buffer )
. then ( font => /* do something with the font buffer */ )