Embedded Font - PowerPoint Java API

Get or Remove Embedded Fonts from Presentation

Now, you can also work with embedded fonts. FontsManager class now offer, getEmbeddedFonts() method that returns a list of embedded fonts inside the presentation. You can also remove any embedded font inside presentation if that is required by using removeEmbeddedFont() method exposed by FontsManager class. The implementation of the above steps is given below.

// Instantiate a Presentation object that represents a presentation file
Presentation pres = new Presentation("EmbeddedFonts.pptx");
try {
    // render a slide that contains a text frame that uses embedded "FunSized"
    ImageIO.write(pres.getSlides().get_Item(0).getThumbnail(new Dimension(960, 720)),
            "PNG", new File("picture1_out.png"));

    IFontsManager fontsManager = pres.getFontsManager();

    // get all embedded fonts
    IFontData[] embeddedFonts = fontsManager.getEmbeddedFonts();

    // find "Calibri" font
    IFontData calibriEmbeddedFont = null;
    for (int i = 0; i < embeddedFonts.length; i++) {
        System.out.println(""+ embeddedFonts[i].getFontName());
        if ("Calibri".equals(embeddedFonts[i].getFontName())) {
            calibriEmbeddedFont = embeddedFonts[i];
            break;
        }
    }

    // remove "Calibri" font
    fontsManager.removeEmbeddedFont(calibriEmbeddedFont);

    // render the presentation; removed "Calibri" font is replaced to an existing one
    ImageIO.write(pres.getSlides().get_Item(0).getThumbnail(new Dimension(960, 720)),
            "PNG", new File("picture2_out.png"));

    // save the presentation without embedded "Calibri" font
    pres.save("WithoutManageEmbeddedFonts_out.ppt", SaveFormat.Ppt);
} catch(IOException e) {
} finally {
    if (pres != null) pres.dispose();
}

Add Embedded Fonts to Presentation

A new property of embedding fonts has been added. To allow embedding fonts into Presentation the new EmbedFontCharacters enum and two overloads of addEmbeddedFont method have been added. Using these methods and choosing the desired embedding rule (represented by EmbedFontCharacters enum), all fonts used in the Presentation can be embedded. The implementation of the above steps is given below.

// Load presentation
Presentation pres = new Presentation("Fonts.pptx");
try {
    IFontData[] allFonts = pres.getFontsManager().getFonts();
    IFontData[] embeddedFonts = pres.getFontsManager().getEmbeddedFonts();

    for (IFontData font : allFonts)
    {
        boolean embeddedFontsContainsFont = false;
        for (int i = 0; i < embeddedFonts.length; i++)
        {
            if (embeddedFonts[i].equals(font))
            {
                embeddedFontsContainsFont = true;
                break;
            }
        }
        if (!embeddedFontsContainsFont)
        {
            pres.getFontsManager().addEmbeddedFont(font, EmbedFontCharacters.All);

            embeddedFonts = pres.getFontsManager().getEmbeddedFonts();
        }
    }

    // Save the presentation
    pres.save("AddEmbeddedFont_out.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();
}