How to know if a font is embedded font or system font? #2604
-
Is your feature request related to a problem? Please describe.
Describe the solution you'd like Describe alternatives you've considered Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
PyMuPDF does not support using system fonts. |
Beta Was this translation helpful? Give feedback.
PyMuPDF does not support using system fonts.
A font is either embedded or a Base14 font. This difference is visible by looking at
page.get_fonts()
- as you did.If you see a "n/a" then the font is not embedded, otherwise it is.
If not embedded then it is a standard font like a Base-14.
It never is a system font.