nowar-fonts / Warcraft-Font-Merger

Warcraft Font Merger,魔兽世界字体合并/补全工具。
MIT License
570 stars 46 forks source link

合并字体后,没有输出ttf,也没有报错 #12

Open kidzgy opened 2 months ago

kidzgy commented 2 months ago

合并两字体:

  1. IosevkaFixed-Extended
  2. SarasaGothicSC-Regular

`%~d0 cd "%~dp0"

.\otfccdump.exe --ignore-hints -o base.otd "%~1" .\otfccdump.exe --ignore-hints -o ext.otd "%~2"

.\merge-otd.exe -n "Sarasa Iosevka;Regular;Normal;Normal" base.otd ext.otd

.\otfccbuild.exe -q -O3 -o out.ttf base.otd

del base.otd ext.otd

pause`

不知道为什么,合并这两个字体时,没有输出ttf,也没有报错信息。如果我把英文字体改为CascadiaMono-Regular,合并是可以输出ttf的。

微信截图_20240829194018

fonts.zip

CyanoHao commented 2 months ago

直接合并字符数会超过 OpenType 上限。

参见 https://github.com/be5invis/Sarasa-Gothic/issues/342

kidzgy commented 2 months ago

直接合并字符数会超过 OpenType 上限。

参见 be5invis/Sarasa-Gothic#342

原来如此,感谢解答!