プレゼンテーションのインポート
Contents
[
Hide
]
Aspose.Slides for Android via Javaを使用すると、他の形式のファイルからプレゼンテーションをインポートできます。Aspose.Slidesは、PDF、HTMLドキュメントなどからプレゼンテーションをインポートするためにSlideCollectionクラスを提供します。
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();
}