I use pdftk
to repair some failures in corrupted PDF files, but I faced another problem which is not fixed by pdftk
(or at least I do not know how to do so).
I have PDF files with text based on TrueType
fonts, but the fonts have not been embedded during PDF creation. Now I want to embed the required fonts to the existing files.
Is there a command-line tool (like pdftk
) to embed missing fonts by providing path to TTF
files?
You can use Ghostscript to embed missing fonts. Run the command like this:
gs \
-o file-with-embedded-fonts.pdf \
-sDEVICE=pdfwrite \
-dEmbedAllFonts=true \
-sFONTPATH="/path/to/ttf;/other/path/to/ttf" \
input-without-embedded-fonts.pdf
See also this answer:
I just had the same problem (on Ubuntu 14.04) and I found the following solution:
ps2pdf foo.ps foo.pdf
and the result is a file with embedded fonts and the original contentThe intermediate postscript file is much bigger (650KB) than the input file (56KB) but the resulting PDF is moderate in size again (82KB).
I do not know why this works, i.e.,
But the result is a PDF with all fonts embedded and a size similar to the original file.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With