You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The workflow of one of my scripts relies on calling subprocess.run for each pdf page to get its respective pdffonts output. Those calls are expensive, so I'm looking forward to better ways to identify likely problematic fonts from font name, enconding, "embeddedness" and unicode conversion.
Example of pdffonts output:
name type encoding emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
DIIEDG+Arial CID TrueType Identity-H yes yes no 51834 0
DIIEDH+Arial CID TrueType Identity-H yes yes no 51831 0
DIIDPF+ArialMT CID TrueType Identity-H yes yes yes 51824 0
DIIEBG+TimesNewRomanPSMT CID TrueType Identity-H yes yes yes 51821 0
[none] Type 3 Custom yes no no 51861 0
Arial TrueType WinAnsi yes no no 67975 0
Is it possible to extract those informations just with poppler backend used here? I just took a look at the source code and I've not found something like that.
Thanks in advance,
The text was updated successfully, but these errors were encountered:
The workflow of one of my scripts relies on calling
subprocess.run
for each pdf page to get its respective pdffonts output. Those calls are expensive, so I'm looking forward to better ways to identify likely problematic fonts from font name, enconding, "embeddedness" and unicode conversion.Example of pdffonts output:
Is it possible to extract those informations just with poppler backend used here? I just took a look at the source code and I've not found something like that.
Thanks in advance,
The text was updated successfully, but these errors were encountered: