Java Powerpointにフッタを挿入


 

今日はJavaでPowerpointにフッタを挿入する方法を紹介します。Spire.Presentation for Javaというライブラリを使ってPowerpointにフッタを簡単に挿入することができます。

下準備

1.E-iceblueの公式サイトからFree Spire. Presentation for Java無料版をダウンロードしてください。

2.IDEを起動して新規プロジェクトを作成してから、インストールされたファイルにあった相応しいSpire. Presentation.jarを参照に追加してください。

コード

import com.spire.presentation.FileFormat;
import com.spire.presentation.Presentation;

public class AddFooter {
    public static void main(String[] args) throws Exception {

 //PowerPointドキュメントをロードします。
        Presentation presentation = new Presentation();
        presentation.loadFromFile("Input.pptx");

        //フッタを入れます。
        presentation.setFooterText("フッタです");
        //フッタを表示にします。
        presentation.setFooterVisible(true);
        //ページ番号を表示にします。
        presentation.setSlideNumberVisible(true);
        //日付を表示にします。
        presentation.setDateTimeVisible(true);

        //保存します。
        presentation.saveToFile("AddFooter.pptx", FileFormat.PPTX_2010);
    }
}

実行結果