We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e83ab9 commit ab051caCopy full SHA for ab051ca
pdfbox/src/main/java/org/apache/pdfbox/pdmodel/font/PDType1CFont.java
@@ -127,13 +127,14 @@ public PDType1CFont(COSDictionary fontDictionary) throws IOException
127
}
128
else
129
{
130
+ String baseFont = getBaseFont();
131
FontMapping<FontBoxFont> mapping = FontMappers.instance()
- .getFontBoxFont(getBaseFont(), fd);
132
+ .getFontBoxFont(baseFont, fd);
133
genericFont = mapping.getFont();
134
135
if (mapping.isFallback())
136
- LOG.warn("Using fallback font " + genericFont.getName() + " for " + getBaseFont());
137
+ LOG.warn("Using fallback font " + genericFont.getName() + " for " + baseFont);
138
139
isEmbedded = false;
140
0 commit comments