Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm aware of the pdftk.exe utility that can indicate which fonts are used by a PDF, and wether they are embedded or not.

Now the problem: given I had PDF files with embedded fonts -- how can I extract those fonts in a way that they are re-usable as regular font files? Are there (preferably free) tools which can do that? Also: can this be done programmatically with, say, iText?

share|improve this question

2 Answers

up vote 87 down vote accepted

One of the most frequently used methods to do this on *nix systems consists of the following steps:

  1. Convert the PDF to PostScript, for example by using XPDF's pdftops.exe helper program;
  2. Now fonts will be embedded in .pfa (PostScript) format + you can extract them using a text editor.
  3. You may need to convert the .pfa (ASCII) to a .pfb (binary) file using the t1utils and pfa2pfb.
  4. In PDFs there are never .pfm or .afm files (font metric files) embedded (because PDF viewer have internal knowledge about these). Without these, font files are hardly usable in a visually pleasing way.

Another method is to use the Free font editor FontForge:

  1. Use the "Open Font" dialogbox used when opening files.
  2. Then select "Extract from PDF" in the filter section of dialog.
  3. Select the PDF file with the font to be extracted.
  4. A "Pick a font" dialogbox opens -- select here which font to open.

Check the FontForge manual. You may need to follow a few specific steps which are not necessarily straightforward in order to save the extracted font data as a file which is re-usable.


Next, MuPDF. This application comes with a utility called pdfextract.exe which can extract fonts and images from PDFs. (In case you don't know about MuPDF, which still is relatively unknown+new: "MuPDF is a Free lightweight PDF viewer and toolkit written in portable C.", written by Artifex Software developers, the same company that gave us Ghostscript.)
(The better known SumatraPDF program is based on MuPDF, and it also ships with pdfextract.exe.)

Note: pdfextract.exe is a command-line program. To use it, do the following:

c:\>  pdfextract.exe filename.pdf

or

c:\myfolder>  pdfextract.exe c:\pathtofile\filename.pdf

This will dump all of the extractable files from the pdf file referenced. Generally you will see a variety of files, including PNG, TTF, CFF, CID, etc. CFF files are a recognized format that can be converted to other formats via a variety of converters for use on different operating systems. Be aware that some of these files may have only a SUBSET of characters and may not represent the complete typeface.

UPDATE (Oct 2012): Recent versions of mupdf have seen an internal reshuffling and renaming of their binaries. Also, some distributions as 'MacPorts' renamed these binaries in order to avoid name clashes with other utilities which use the same names. -- Recent versions of mupdf use a 'swiss knife'-alike binary called mubusy (name inspired by busybox?) which supports the sub-commands info, clean, extract, poster and show. Unfortunatey, the official documentation for these tools isn't up to date (yet). To achieve the (roughly) equivalent results with mupdf as its previous too pdfextract did, just run mubusy extract ....


Finally, Ghostscript can also extract fonts directly from PDFs. However, it needs the help of a special utility program named extractFonts.ps, written in PostScript language, which is available from the Ghostscript source code repository:

Now run both, this file extractFonts.ps and your PDF file through Ghostscript like this:

gswin32c.exe ^
  -q -dNODISPLAY ^
   c:/path/to/extractFonts.ps ^
  -c "(c:/path/to/your/PDFFile.pdf) extractFonts quit"

I've tested the Ghostscript method a few years ago. At the time it did extract *.ttf (TrueType) just fine. I don't know if other font types will also be extracted at all, and if so, in a re-usable way. I don't know if the utility does block extracting of fonts marked as protected.


Caveats:

  • In any case you need to follow the license that applies to the font. Some font licences do not allow free use and/or distribution. Pirating fonts is like pirating any software or other copyrighted material.
  • Most PDFs which are in the wild out there do not embed the full font anyway, but only subsets. Extracting a subset of a font is only useful in a very limited scope, if at all.

Also read this about Pros and (more) Cons regarding font extraction efforts:

share|improve this answer
3  
Excellent answer! This deserves 10 more upvotes – kizzx2 Jan 1 '11 at 18:16
1  
@kizzx2: feel free to upvote or downvote any of my other [PDF] or [Ghostscript] answers :-) – Kurt Pfeifle Jan 1 '11 at 20:45
If you are on Mac and install mupdf from ports (or perhaps from binary too), the extraction too is called mupdfextract. You can run it from terminal, as long as it's in the path. – Orwellophile Oct 12 '12 at 10:26
@Orwellophile: thanks for the hint. I took it as an opportunity to update some of my hints about mupdf. See also this... – Kurt Pfeifle Oct 12 '12 at 12:18
I'll check them out. And just so this isn't a pointless comment: Your process worked AWESOMELY... (voted up)... it extracted and named 3 variations of the font, and then I used fontforge (also free from macports) to merge. Unfortunately my font is still missing the capital letter "X"... What are the odds :p – Orwellophile Oct 21 '12 at 13:15
show 4 more comments

Eventually found the FontForge Windows installer package and opened the PDF through the installed program. Worked a treat, so happy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.