Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.16, 2.0.17
-
None
Description
PDSimpleFont.isStandard14() invokes:
Encoding baseEncoding = dictionary.getBaseEncoding(); for (Map.Entry<Integer, String> entry : dictionary.getDifferences().entrySet()) { if (!entry.getValue().equals(baseEncoding.getName(entry.getKey()))) { return false; } }
if dictionary.getBaseEncoding() is null then the if-statement throws a NPE.