bai yuan created PDFBOX-5473:
--------------------------------
Summary: Can't get the family font name of the specified font.
Key: PDFBOX-5473
URL: https://issues.apache.org/jira/browse/PDFBOX-5473
Project: PDFBox
Issue Type: Bug
Affects Versions: 2.0.24
Reporter: bai yuan
Attachments: 현대하모니 L.ttf
Run the following code, you will see the family name of this font is null.
{code:java}
System.setProperty("sun.java2d.cmm",
"sun.java2d.cmm.kcms.KcmsServiceProvider");
PDDocument doc = new PDDocument();
PDPage page = new PDPage(PDRectangle.A4);
doc.addPage(page);
PDPageContentStream contentStream = new PDPageContentStream(doc, page);
TrueTypeFont ttFont = new TTFParser().parse(new File("현대하모니 L.ttf"));
PDFont font = PDType0Font.load(doc, ttFont, true);
String name = ttFont.getNaming().getFontFamily();
contentStream.beginText();
contentStream.newLineAtOffset(50, 800);
contentStream.setFont(font, 48);
contentStream.showText("abc");
contentStream.endText();
contentStream.close();
doc.save("pdfbox.pdf");
doc.close();
System.out.println(name); {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]