resources.setItem( COSName.FONT, fonts );
}
Map actuals = new HashMap();
retval = new COSDictionaryMap( actuals, fonts );
for( COSName fontName : fonts.keySet() )
{
COSBase font = fonts.getDictionaryObject( fontName );
//data-000174.pdf contains a font that is a COSArray, looks to be an error in the
//PDF, we will just ignore entries that are not dictionaries.
if( font instanceof COSDictionary )