PowerPointをSWF Flashに変換

PPT(X)をSWFに変換

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

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();
}