提取 macOS 上的苹方字体并在 Windows 上安装
目前的 MBP 配置太差了 每次
webpack reload
Lunacy
开始
首先我们需要 Adobe 的
otc2otf
PingFang.ttc
接下来我们需要安装 Font Tools
在确保安装了 Brew 的情况下我们可以直接
brew install fonttools
转换
打开
PingFang.ttc
python2 otc2otf.py -w PingFang.ttc
rm -f PSNameUndefined.otf
得到的
otf
我们需要使用
Font Tools
#!/bin/bash
for item in `ls *.otf`; do
echo "Editing: "$item
ttx -t cmap $item
FILENAME="$(echo $item | sed 's/\.[^.]*$//')"
sed -i '' 's/platformID="0" platEncID="3"/platformID="3" platEncID="1"/g' $FILENAME.ttx
sed -i '' 's/platformID="0" platEncID="4"/platformID="3" platEncID="10"/g' $FILENAME.ttx
ttx -b -m $item $FILENAME.ttx
done
转换完成之后会有
字体名#1.otf