Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given a PDF document, is there a way to tell if it has embedded fonts? I'm working on the problem posted here: http://stackoverflow.com/questions/3774995/pdf-how-to-optimize-filesize-convert-to-png-embedded-fonts-problem. Perhaps I can rework some of my application's logic based on whether a PDF has embedded fonts or not.

share|improve this question

1 Answer

up vote 0 down vote accepted

Use pdffonts (*nix) or pdffonts.exe (*doz). They are part of XPDF.

  1. To see which fonts are used (not necessarily embedded!) on pages 4-6 of a PDF:

    pdffonts ^
        -f 4 ^
        -l 6 ^
        input.pdf
    
  2. To get a list of all fonts used in a PDF, simply skip the -f 4 -l 6 part...

  3. Now to differentiate between embedded and non-embedded fonts, learn...

    (a) ...the general meaning of the yes and no keywords, and
    (b) ...how to interprete these keywords in the context of a list column carrying the heading emb

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.