A parse and write opentype fonts library.
Base Font-Validator/OTFontFile which write by Microsoft and HinTak. I upgrade it to .NET 8 and modify some files.
using OTFontFile;
var file = "Your font";
var otf = new OTFile();
if (otf.open(fontFile))
{
if (!otf.IsCollection())
{
var font = otf.GetFont(0);
var nameTable = (Table_name)font.GetTable("name")!;
}
}