SimpleApp / PDFParser

Swift PDFParser for PDF parsing and text mining. Includes a TrueType font parser
37 stars 10 forks source link

there is a possibility of ignoring the sources #4

Closed ghost closed 5 years ago

ghost commented 5 years ago

There is a pdf that his font is not found in the catalog. What to do in these cases

SimpleApp commented 5 years ago

So according to the PDF spec, some standard fonts with standard names are supposed to be available "by default" by compliant readers. This library doesn't include them because best practice for modern PDF is to always include the fonts metadata in the PDF file.

A solution would be to add support for those standard fonts by embedding their metadata in the library. Contributions welcome !