Here are already questions:
- How to determine which fonts contain a specific character?
- Checking if certain characters are supported by a font
I have many different fonts. Many of them are "ascii only", and i need to check what fonts contains several accented characters. (latin - unicode codepoints - texts are encoded as utf8) like: (áäčďéěíĺľňóôöőŕřšťúůüűýž)
Have mainly:
- TrueType fonts (with the extension .ttf)
- TrueType collections (extension .ttc)
- OpenType fonts (.otf)
What is the usual (correct) way to do this with perl? (it is the only language what i know a bit and the above questions are for C). Asking before I start install all CPAN modules what contains "font":).
I'm on OS X (if this is matters, and can install any macports package - if it helps).