PowerPointをSWF Flashに変換

PPT(X)をSWFに変換

Presentationクラスによって公開されているSaveメソッドを使用して、全体のプレゼンテーションをSWF文書に変換できます。以下の例は、SWFOptionsクラスが提供するオプションを使用して、プレゼンテーションをSWF文書に変換する方法を示しています。また、生成されたSWFにコメントを含めることもでき、ISWFOptionsクラスとINotesCommentsLayoutingOptionsインターフェースを使用できます。

Presentation pres = new Presentation("Sample.pptx");
try {
    SwfOptions swfOptions = new SwfOptions();
    swfOptions.setViewerIncluded(false);
    swfOptions.getNotesCommentsLayouting().setNotesPosition(NotesPositions.BottomFull);
    
    // プレゼンテーションの保存
    pres.save("Sample.swf", SaveFormat.Swf, swfOptions);
} finally {
    if (pres != null) pres.dispose();
}