Javaでプレゼンテーションを開く

ゼロからPowerPointプレゼンテーションを作成するだけでなく、Aspose.Slidesを使用して既存のプレゼンテーションを開くこともできます。プレゼンテーションを読み込んだ後、プレゼンテーションに関する情報を取得したり、プレゼンテーション(スライドの内容)を編集したり、新しいスライドを追加したり、既存のスライドを削除したりすることができます。

プレゼンテーションを開く

既存のプレゼンテーションを開くには、まずPresentationクラスのインスタンスを作成し、そのコンストラクターにファイルパス(開きたいプレゼンテーションの)を渡します。

このJavaコードは、プレゼンテーションを開き、その中に含まれるスライドの数を取得する方法を示しています:

// Presentationクラスのインスタンスを作成し、ファイルパスをコンストラクターに渡す
Presentation pres = new Presentation("Presentation.pptx");
try {
    // プレゼンテーションに存在するスライドの合計数を印刷します
    System.out.println(pres.getSlides().size());
} finally {
    if (pres != null) pres.dispose();
}

パスワード保護されたプレゼンテーションを開く

パスワード保護されたプレゼンテーションを開く必要がある場合は、LoadOptionsクラスのPasswordプロパティを通じてパスワードを渡すことで、プレゼンテーションを復号化し、読み込むことができます。このJavaコードはその操作を示しています:

LoadOptions loadOptions = new LoadOptions();
loadOptions.setPassword("YOUR_PASSWORD");
Presentation pres = new Presentation("pres.pptx", loadOptions);
try {
// 復号化されたプレゼンテーションで作業を行う
} finally {
    if (pres != null) pres.dispose();
}

大きなプレゼンテーションを開く

Aspose.Slidesは、大きなプレゼンテーションを読み込むために、LoadOptionsクラスのBlobManagementOptionsプロパティを特に利用してオプションを提供しています。

このJavaコードは、2GBサイズの大きなプレゼンテーションを読み込む操作を示しています:

LoadOptions loadOptions = new LoadOptions();
loadOptions.getBlobManagementOptions().setPresentationLockingBehavior(PresentationLockingBehavior.KeepLocked);
loadOptions.getBlobManagementOptions().setTemporaryFilesAllowed(true);
loadOptions.getBlobManagementOptions().setMaxBlobsBytesInMemory(0L);

Presentation pres = new Presentation("veryLargePresentation.pptx", loadOptions);
try {
// 大きなプレゼンテーションが読み込まれ、使用できるが、メモリ消費は依然として低い。
// プレゼンテーションを変更します。
pres.getSlides().get_Item(0).setName("非常に大きなプレゼンテーション");

// プレゼンテーションは別のファイルに保存されます。操作中のメモリ消費は低いままです
pres.save("veryLargePresentation-copy.pptx", SaveFormat.Pptx);
} finally {
    if(pres != null) pres.dispose();
}

プレゼンテーションを読み込む

Aspose.Slidesは、外部リソースを管理するための単一メソッドを持つIResourceLoadingCallbackを提供しています。このJavaコードは、IResourceLoadingCallbackインターフェースを使用する方法を示しています:

LoadOptions opts = new LoadOptions();
opts.setResourceLoadingCallback(new ImageLoadingHandler());

Presentation pres = new Presentation("presentation.pptx", opts);
class ImageLoadingHandler implements IResourceLoadingCallback 
{
    public int resourceLoading(IResourceLoadingArgs args) 
    {
        if (args.getOriginalUri().endsWith(".jpg")) 
        {
            try // 代替画像を読み込む
            {
                byte[] imageBytes = Files.readAllBytes(new File("aspose-logo.jpg").toPath());
                args.setData(imageBytes);
                return ResourceLoadingAction.UserProvided;
            } catch (RuntimeException ex) {
                return ResourceLoadingAction.Skip;
            }  catch (IOException ex) {
                ex.printStackTrace();
            }
        } else if (args.getOriginalUri().endsWith(".png")) {
            // 代替URLを設定する
            args.setUri("http://www.google.com/images/logos/ps_logo2.png");
            return ResourceLoadingAction.Default;
        }
        // その他の画像はすべてスキップ
        return ResourceLoadingAction.Skip;
    }
}

埋め込まれたバイナリオブジェクトなしでプレゼンテーションを読み込む

PowerPointプレゼンテーションは、次のタイプの埋め込まれたバイナリオブジェクトを含むことができます:

ILoadOptions.DeleteEmbeddedBinaryObjectsプロパティを使用すると、埋め込まれたバイナリオブジェクトなしでプレゼンテーションを読み込むことができます。

このプロパティは、潜在的に悪意のあるバイナリコンテンツを削除するのに役立ちます。

コードは、マルウェアコンテンツなしでプレゼンテーションを読み込んで保存する方法を示しています:

LoadOptions loadOptions = new LoadOptions();
loadOptions.setDeleteEmbeddedBinaryObjects(true);

Presentation pres = new Presentation("malware.ppt", loadOptions);
try {
    pres.save("clean.ppt", SaveFormat.Ppt);
} finally {
    if (pres != null) pres.dispose();
}

プレゼンテーションを開いて保存する

プレゼンテーションを開いて保存する手順:

  1. Presentationクラスのインスタンスを作成し、開きたいファイルを渡します。
  2. プレゼンテーションを保存します。
// PPTファイルを表すPresentationオブジェクトをインスタンス化する
Presentation pres = new Presentation();
try {
    // ...ここでいくつかの作業を行う...
    
    // プレゼンテーションをファイルに保存する
    pres.save("demoPass.pptx", com.aspose.slides.SaveFormat.Pptx);
} finally {
    if(pres != null) pres.dispose();
}