views:

280

answers:

1

Does anyone know of a good library that can parse OpenType files and provides information about font features in simple, understandable OO format? Thanks.

+2  A: 

GlyphTypeface gives you some basic information about OpenType font:

Dim gTypeface = New GlyphTypeface(New Uri("c:\GoudyForumPro.otf"))

gTypeface.Copyrights
gTypeface.Descriptions
gTypeface.FamilyNames
gTypeface.FaceNames
'...
Tomas Kirda