在Java中自定义PowerPoint字体

加载自定义字体

Aspose.Slides允许您加载在演示文稿中渲染的字体,而无需安装这些字体。这些字体从自定义目录加载。

  1. 创建FontsLoader类的实例,并调用loadExternalFonts方法。
  2. 加载要渲染的演示文稿。
  3. 清除缓存FontsLoader类中。

以下Java代码演示了字体加载过程:

// 寻找字体的文件夹
String[] folders = new String[] { externalFontsDir };

// 加载自定义字体目录中的字体
FontsLoader.loadExternalFonts(folders);

// 进行一些工作并执行演示文稿/幻灯片渲染
Presentation pres = new Presentation("DefaultFonts.pptx");
try {
    pres.save("NewFonts_out.pptx", SaveFormat.Pptx);
} finally {
    if (pres != null) pres.dispose();

    // 清除字体缓存
    FontsLoader.clearCache();
}

获取自定义字体文件夹

Aspose.Slides提供getFontFolders方法,允许您查找字体文件夹。该方法返回通过LoadExternalFonts方法添加的文件夹和系统字体文件夹。

以下Java代码展示了如何使用getFontFolders:

// 此行输出搜索字体文件的文件夹。 
// 这些是通过LoadExternalFonts方法添加的文件夹和系统字体文件夹。
String[] fontFolders = FontsLoader.getFontFolders();

指定与演示文稿一起使用的自定义字体

Aspose.Slides提供setDocumentLevelFontSources属性,以允许您指定将与演示文稿一起使用的外部字体。

以下Java代码展示了如何使用setDocumentLevelFontSources属性:

byte[] memoryFont1 = Files.readAllBytes("customfonts/CustomFont1.ttf");
byte[] memoryFont2 = Files.readAllBytes("customfonts/CustomFont2.ttf");

LoadOptions loadOptions = new LoadOptions();
loadOptions.getDocumentLevelFontSources().setFontFolders(new String[] { "assets/fonts", "global/fonts" });
loadOptions.getDocumentLevelFontSources().setMemoryFonts(new byte[][] { memoryFont1, memoryFont2 });

Presentation pres = new Presentation("MyPresentation.pptx", loadOptions);
try {
    // 处理演示文稿
    // CustomFont1、CustomFont2以及来自assets\fonts和global\fonts文件夹及其子文件夹的字体对演示文稿可用
} finally {
    if (pres != null) pres.dispose();
}

外部管理字体

Aspose.Slides提供loadExternalFont(byte[] data)方法,允许您从二进制数据加载外部字体。

以下Java代码演示了字节数组字体加载过程:

FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALN.TTF")));
FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALNBI.TTF")));
FontsLoader.loadExternalFont(Files.readAllBytes(Paths.get("ARIALNI.TTF")));

try
{
    Presentation pres = new Presentation("");
    try {
        // 演示文稿生命周期中加载的外部字体
    } finally {
        
    }
}
finally
{
    FontsLoader.clearCache();
}