字体替代 - PowerPoint Java API

Contents
[ ]

Aspose.Slides 允许您设置字体规则,以确定在某些条件下必须执行的操作(例如,当无法访问某个字体时),步骤如下:

  1. 加载相关的演示文稿。
  2. 加载要替代的字体。
  3. 加载新字体。
  4. 添加替代规则。
  5. 将规则添加到演示文稿的字体替代规则集合中。
  6. 生成幻灯片图像以观察效果。

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

//加载演示文稿
Presentation pres = new Presentation("Fonts.pptx");
try {
    //加载将被替代的源字体
    IFontData sourceFont = new FontData("SomeRareFont");
    
    //加载新字体
    IFontData destFont = new FontData("Arial");
    
    //为字体替代添加字体规则
    IFontSubstRule fontSubstRule = new FontSubstRule(sourceFont, destFont, FontSubstCondition.WhenInaccessible);
    
    //将规则添加到字体替代规则集合
    IFontSubstRuleCollection fontSubstRuleCollection = new FontSubstRuleCollection();
    fontSubstRuleCollection.add(fontSubstRule);
    
    //将字体规则集合添加到规则列表
    pres.getFontsManager().setFontSubstRuleList(fontSubstRuleCollection);
    
    //当 SomeRareFont 无法访问时,将使用 Arial 字体
    IImage slideImage = pres.getSlides().get_Item(0).getImage(1f, 1f);
    
    //以 JPEG 格式将图像保存到磁盘
    try {
          slideImage.save("Thumbnail_out.jpg", ImageFormat.Jpeg);
    } finally {
         if (slideImage != null) slideImage.dispose();
    }
} finally {
    if (pres != null) pres.dispose();
}