将 PowerPoint 转换为 SWF Flash
Contents
[
Hide
]
将 PPT(X) 转换为 SWF
Save 方法由 Presentation 类公开,可以将整个演示文稿转换为 SWF 文档。以下示例演示如何使用 SWFOptions 类提供的选项将演示文稿转换为 SWF 文档。您还可以使用 ISWFOptions 类和 INotesCommentsLayoutingOptions 接口在生成的 SWF 中包含注释。
$pres = new Presentation("Sample.pptx");
try {
$swfOptions = new SwfOptions();
$swfOptions->setViewerIncluded(false);
$swfOptions->getNotesCommentsLayouting()->setNotesPosition(NotesPositions::BottomFull);
# 保存演示文稿
$pres->save("Sample.swf", SaveFormat::Swf, $swfOptions);
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
```php