*
* @throws IOException If there is a problem retrieving the page labels.
*/
public PDPageLabels getPageLabels() throws IOException
{
PDPageLabels labels = null;
COSDictionary dict = (COSDictionary) root.getDictionaryObject(COSName.PAGE_LABELS);
if (dict != null)
{
labels = new PDPageLabels(document, dict);
}
return labels;
}