EOT file with empty loca table - potential BUG?
Microsoft Powerpoint files contain Embedded Fonts in the EOT format:
https:/
But it seems the files came w/o "loca" table.
This seems also not hard requested:
https:/
I run the following command line:
eot2ttf font1.fntdata test.ttf
EOT out of spec: no blank loca table found!
Unknown error: this is a bug in libeot; it does not *necessarily* indicate a corrupted font file.
The error is generated in the source file:
/src/ctf/parseCTF.c
Line 836 (warning), 844 (error):
834 if (!loca)
835 {
836 logWarning("EOT out of spec: no blank loca table found!\n");
837 result = addTable(*out, "loca", &loca);
838 if (result != EOT_SUCCESS)
839 {
840 return result;
841 }
842 if (!loca)
843 {
844 return EOT_LOGIC_ERROR;
845 }
846 }
I'm not a programming guru so I need some support to understand the error generation better.
Thanks for support in advance.
Question information
- Language:
- English Edit question
- Status:
- Answered
- For:
- Ubuntu libeot Edit question
- Assignee:
- No assignee Edit question
- Last query:
- Last reply:
Can you help with this problem?
Provide an answer of your own, or ask goehte for more information if necessary.