use type 1 font handler for mmtype1

multiple master fonts are an extension of the adobe type 1 font format. we don't have any special case handling for them so for now we default to attempting to use the adobe type 1 font handler. it may be that we need some special parsing logic but the test file using the mmtype1 fonts didn't actually specify any font bytes so we can't check.
This commit is contained in:
Eliot Jones
2020-02-21 10:49:29 +00:00
parent 28faf1c22c
commit 8d415fd162

View File

@@ -22,6 +22,7 @@
{NameToken.Type0, type0FontHandler},
{NameToken.TrueType, trueTypeFontHandler},
{NameToken.Type1, type1FontHandler},
{NameToken.MmType1, type1FontHandler},
{NameToken.Type3, type3FontHandler}
};
}