How to add custom fonts in Apache POI ppt
问题 I am able to add fonts which are default in Apache POI ppt but not able to add custom fonts. This is what I currently have: XSLFTextBox categoryTitleShape = indexslide.createTextBox(); categoryTitleShape.setAnchor(new java.awt.Rectangle(25, 40, 120, 30)); XSLFTextRun categoryTitle = categoryTitleShape.addNewTextParagraph().addNewTextRun(); categoryTitle.setText("CATEGORIES"); // visible text categoryTitle.setFontSize(20.); categoryTitle.setFontColor(Color.BLACK); categoryTitle.setBold(true);