I have a pdf , where page 1 is having page number as roman 1 i.e. "i"
Now how to get this information. I know using catalogues i can get page label dictionary
CGPDFDictionaryRef catalog = CGPDFDocumentGetCatalog(document);
if (CGPDFDictionaryGetDictionary(catalog, "PageLabels", &PageLabels) == true)
{
}
and by accessing page label dictionary i have to find range of pages and corresponding operators to actually know the label. i.e.: "D" for arabic decimal, "r" for roman...
Is there a way to directly access this label from CGPDFPageRef