У меня есть существующий ttf , где я хочу извлечь все сопоставления лигатуры в эту форму:
{
"calendar_today": "E935",
"calendar_view_day": "E936",
...
}
Я использую fontkit с этим сценарием:
const fontkit = require('fontkit');
let font = fontkit.openSync('./MaterialIcons-Regular.ttf');
let lookupList = font.GSUB.lookupList.toArray();
let lookupListIndexes = font.GSUB.featureList[0].feature.lookupListIndexes;
lookupListIndexes.forEach(index => {
let subTable = lookupList[index].subTables[0];
let ligatureSets = subTable.ligatureSets.toArray();
ligatureSets.forEach(ligatureSet => {
ligatureSet.forEach(ligature => {
let character = font.stringsForGlyph(ligature.glyph)[0];
let characterCode = character.charCodeAt(0).toString(16).toUpperCase();
let ligatureText = ligature
.components
.map(x => font.stringsForGlyph(x)[0])
.join('');
console.log(`${ligatureText} -> ${characterCode}`);
});
});
});
Однако я не получаю полных имен лигатур.вывод:
...
alendar_today -> E935
rop_portrait -> E3C5
ontact_phone -> E0CF
ontrol_point -> E3BA
hevron_right -> E5CC
...
Что я делаю не так?Судя по анализу с FontForge, в именах шрифтов лигатуры не пропущены никакие символы.