プレゼンテーションフォーマット

Contents
[ ]

Aspose.Slides for Python via .NET は、プレゼンテーションフォーマットをロードする前に取得するために使用される PresentationFactory クラスを提供します。

プレゼンテーションフォーマットを取得するには、以下の手順に従ってください:

  1. IPresentationInfo クラスのインスタンスを作成します。
  2. プレゼンテーションフォーマットに関する情報を取得します。

以下の例では、プレゼンテーションフォーマットを取得しています:

import aspose.slides as slides

info = slides.PresentationFactory.instance.get_presentation_info(path + "HelloWorld.pptx")
if info.load_format == slides.LoadFormat.PPTX:
    print("PPTX")
elif info.load_format == slides.LoadFormat.UNKNOWN:
    print("UNKNOWN")