I'm using CGPDFScannerto scan PDF. When the scanner encounters something like:

BT
/F13 12 Tf 288 720 Td (ABC) Tj
ET

I use operator callbacks to extract the Tf, Td and Tj data. How do I extract /F13?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It's a name, a special form of string, usually used as dictionary keys. You can pop it with CGPDFScannerPopName. The information about the actual font is contained in the page's Resources dictionary, which contains a Font dictionary.

link|improve this answer
So the font name that's popped in the Tf callback is a key to a value in the font dictionary (itself a value in the page resource dictionary)? – SK9 May 18 '11 at 0:45
Yes. Be sure to read the PDF specification for details. Fonts in PDF are a pretty complex topic. – omz May 18 '11 at 0:56
feedback

Your Answer

 
or
required, but never shown

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