purplebamboo / font-carrier

font-carrier是一个功能强大的字体操作库,使用它你可以随心所欲的操作字体。让你可以在svg的维度改造字体的展现形状。
http://purplebamboo.github.io/font-carrier/
MIT License
1.62k stars 194 forks source link

生成的字体自动加了个x的字符码,导致x无法显示 #39

Closed NorthLine closed 4 years ago

NorthLine commented 4 years ago

生成的字体自动加了个x的字符码,导致x无法显示

请问是我操作错了么??

NorthLine commented 4 years ago

找到了 真是坑啊 都什么年代了还兼容XP lib/class/font.js image 186-187行 //判断原始字体里面是否已经有了x,没有的话需要补上默认的。因为在xp下没有这个,会蓝屏。 hasX: this.__glyphs['x'] ? true : false

我建议直接改掉 xp蓝屏就让他蓝屏吧

改成如下: image

187行:hasX: true