共计 1187 个字符,预计需要花费 3 分钟才能阅读完成。
前言
在制作 PowerPoint 幻灯片时,可能会遇到须要将页码、工夫、公司名称等具备标志性内容增加到幻灯片的状况。此时咱们能够通过插入页眉页脚形式来实现上述操作。本文将利用 Free Spire.Presentation for Java 收费控件在 Java 程序中演示如何将含有页码、工夫、公司名称的页脚增加到 PowerPoint 幻灯片中。
测试环境搭建
在运行代码前,须要搭建测试环境。首先下载安装配置好 JDK 和 Intellij IDEA,而后将控件里的 Jar 包导入 IDEA 即可。这里提供两种导入形式给大家。其一 ,间接在 官网 上下载安装包,解压后找到 lib 文件夹下的 Spire.Presentation.jar,最初将其手动导入 IDEA。其二 ( 举荐应用),在 IDEA 中创立一个 Maven 我的项目,而后在 pom.xml 文件中键入以下代码,最初点击“Import Changes”。更加具体的步骤可参考此教程。
<repositories>
<repository>
<id>com.e-iceblue</id>
<url>http://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation.free</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
最初,导入成果 如下图所示:
代码示例
import com.spire.presentation.*;
public class AddFooter {public static void main(String[] args) throws Exception {
// 加载 PPT 示例文档
Presentation presentation = new Presentation();
presentation.loadFromFile("C:UsersTest1DesktopSample.pptx");
// 增加页脚
presentation.setFooterText("正飞传媒有限公司");
// 设置页脚为可见
presentation.setFooterVisible(true);
// 设置页码为可见
presentation.setSlideNumberVisible(true);
// 设置日期为可见
presentation.setDateTimeVisible(true);
// 保留后果文档
presentation.saveToFile("output/AddFooter.pptx", FileFormat.PPTX_2010);
}
}
效果图:
正文完