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