导入演示文稿
Contents
[
Hide
]
使用 Aspose.Slides for Android via Java,您可以从其他格式的文件中导入演示文稿。Aspose.Slides 提供 SlideCollection 类,允许您从 PDF、HTML 文档等导入演示文稿。
从 PDF 导入 PowerPoint
在这种情况下,您可以将 PDF 转换为 PowerPoint 演示文稿。
- 创建一个 Presentation 类的实例。
- 调用 addFromPdf() 方法,并传入 PDF 文件。
- 使用 save() 方法将文件保存为 PowerPoint 格式。
以下 Java 代码演示了 PDF 到 PowerPoint 的操作:
Presentation pres = new Presentation();
try {
pres.getSlides().addFromPdf("InputPDF.pdf");
pres.save("OutputPresentation.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
提示
您可能想要查看 Aspose 免费 PDF 到 PowerPoint 网页应用,因为它是这里描述的过程的实时实现。从 HTML 导入 PowerPoint
在这种情况下,您可以将 HTML 文档转换为 PowerPoint 演示文稿。
- 创建一个 Presentation 类的实例。
- 调用 addFromHtml() 方法,并传入 HTML 文件。
- 使用 save() 方法将文件保存为 PowerPoint 格式。
以下 Java 代码演示了 HTML 到 PowerPoint 的操作:
Presentation presentation = new Presentation();
try {
FileInputStream htmlStream = new FileInputStream("page.html");
try {
presentation.getSlides().addFromHtml(htmlStream);
} finally {
if (htmlStream != null) htmlStream.close();
}
presentation.save("MyPresentation.pptx", SaveFormat.Pptx);
} catch(IOException e) {
} finally {
if (presentation != null) presentation.dispose();
}