プレゼンテーションのインポート

Aspose.Slides for Javaを使用することで、他の形式のファイルからプレゼンテーションをインポートできます。Aspose.Slidesは、PDF、HTMLドキュメントなどからプレゼンテーションをインポートするためのSlideCollectionクラスを提供します。

PDFからPowerPointのインポート

この場合、PDFをPowerPointプレゼンテーションに変換できます。

pdf-to-powerpoint

  1. Presentationクラスのインスタンスを作成します。
  2. addFromPdf()メソッドを呼び出し、PDFファイルを渡します。
  3. 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();
}

HTMLからPowerPointのインポート

この場合、HTMLドキュメントをPowerPointプレゼンテーションに変換できます。

  1. Presentationクラスのインスタンスを作成します。
  2. addFromHtml()メソッドを呼び出し、PDFファイルを渡します。
  3. 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();
}