foliojs / font-manager

A C++ module for Node.js providing access to the system font catalog.
MIT License
295 stars 100 forks source link

findFontsSync not returning all fonts in family #44

Open shaehn opened 4 years ago

shaehn commented 4 years ago

On my Windows 10 system, I have 4 font files in the Times New Roman family; times.ttf, timesbd.ttf, timesbi.ttf, timesi.ttf. When I make the following call:

let times = fm.findFontsSync({ family: 'Times New Roman' });

the result only holds two font files; times.ttf and timesbd.ttf.

Why doesn't the other two files appear as well?