I'm running the following:

if (CGPDFDictionaryGetObject(dict, "DescendantFonts", &object))
  {
    CGPDFObjectType objectType = CGPDFObjectGetType(object);
    switch (objectType)
    {
      case kCGPDFObjectTypeArray:
      {
        CGPDFArrayRef anArray = NULL;
        CGPDFObjectGetValue(object, kCGPDFObjectTypeArray, NULL);
        NSLog(@"%i", CGPDFArrayGetCount(anArray));
      }
        break;
      default:
        break;
    }
  }

to extract information from a PDF page font dictionary and it finds something when I have a truetype font.

An example from the PDF guide is:

14 0 obj 
<<
/Type /Font
/Subtype /Type0
/BaseFont /HeiseiMin−W5−90ms−RKSJ−H
/Encoding /90ms−RKSJ−H
/DescendantFonts [15 0 R]
>>
endobj

However, the array always has count zero! [It's supposed to be "a one-element array."] How can this be? - the PDF guidelines also stipulate that this array is required and "specif(ies) the CIDFont dictionary that is the descendant of this Type 0 font." How can it have count zero and satisfy the requirement that it contain this dictionary?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Look at anArray in this part of your code:

CGPDFArrayRef anArray = NULL;
CGPDFObjectGetValue(object, kCGPDFObjectTypeArray, NULL);
NSLog(@"%i", CGPDFArrayGetCount(anArray));

It's never set to anything other than NULL. You probably intended it to be:

CGPDFObjectGetValue(object, kCGPDFObjectTypeArray, &anArray);
link|improve this answer
OMG, you're right of course. Thanks. – SK9 May 18 '11 at 22:31
feedback

Your Answer

 
or
required, but never shown

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