PNG JPG BMP TIFF PPT
Aspose.Slides  for C++

C++でPPT形式を解析する

MicrosoftやAdobePDFなどのソフトウェアを使用せずに、サーバー側のAspose.Slides for C++APIを使用したネイティブで高性能なPPTドキュメントの解析。

C++を使用してPPTファイルを解析する方法

PPTファイルを解析するために、 [Aspose.Slides for C ++](https://products.aspose.com/slides/ja/cpp) 機能が豊富で強力で使いやすいC++プラットフォーム用のドキュメント解析APIであるAPI。最新バージョンを直接ダウンロードできます。開くだけです。 [NuGet](https://www.nuget.org/packages/aspose.slides) パッケージマネージャー、検索 ** Aspose.Slides.Cpp ** とインストールします。パッケージマネージャーコンソールから次のコマンドを使用することもできます。

指示


PM> Install-Package Aspose.Slides.Cpp

C++でPPTファイルを解析する手順

[Aspose.Slides for C ++](https://products.aspose.com/slides/ja/cpp)APIを使用した基本的なドキュメントの解析は、わずか数行のコードで実行できます。

  1. PPTファイルをロードします。

  2. 最初のスライドのITextFrameオブジェクトの配列を取得します。

  3. TextFramesの配列をループします

  4. 現在のITextFrameの段落をループします。

  5. 現在のIParagraphの部分をループします。

  6. テキストを表示します。

システム要求

Aspose.Slides for C ++は、すべての主要なプラットフォームとオペレーティングシステムでサポートされています。次の前提条件があることを確認してください。

-MicrosoftWindowsまたはWindows32ビット、Windows 64ビット、Linux64ビット用のC++ランタイム環境と互換性のあるOS。 -プロジェクトで参照されているC++DLLのAspose.Slides。

 

PPTファイルの解析-C++

// Sample file path
const String sourceFilePath = u"SourcePath\sourceFile.ppt";

// Load the PPT file
SharedPtr<Presentation> presentation = MakeObject<Presentation>(sourceFilePath);

// Get an Array of ITextFrame objects from the first slide
System::ArrayPtr<SharedPtr<ITextFrame>> textFramesSlideOne = SlideUtil::GetAllTextBoxes(presentation->get_Slides()->idx_get(0));

// Loop through the Array of TextFrames
for (int i = 0; i get_Length(); i++){
	// Loop through paragraphs in current ITextFrame
	for (SharedPtr<IParagraph> paragraph : textFramesSlideOne[i]->get_Paragraphs()){
		// Loop through portions in the current IParagraph
		for (SharedPtr<IPortion> portion : paragraph->get_Portions()){
			// Display text
			Console::WriteLine(portion->get_Text());
		}
	}
}  

    
 
  • Aspose.Slides for C++APIについて

    Aspose.Slides APIを使用して、Microsoft PowerPointドキュメントの読み取り、書き込み、操作、およびPDF、XPS、HTML、TIFF、ODP、その他のさまざまな形式への変換を行うことができます。新しいファイルを最初から作成し、サポートされている関連する形式で保存できます。 Aspose.Slidesは、プレゼンテーション、スライド、要素を作成、解析、または操作するためのスタンドアロンAPIであり、MicrosoftやOpenOfficeなどのソフトウェアに依存しません。

    Online PPT Parser Live Demos

    Extract text and images from PPT documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your PPT files.
      It will be parsed instantly.

    PPT PPT ファイル形式とは

    A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow. It specifies the Binary File Format used by Microsoft PowerPoint 97-2003. A PPT file can contain several different types of information such as text, bulleted points, images, multimedia and other embedded OLE objects. Microsoft came up with newer file format for PowerPoint, known as PPTX, from 2007 onwards that is based on Office OpenXML and is different from this binary file format. Several other application programs such as OpenOffice Impress and Apple Keynote can also create PPT files.

    続きを読む

    その他のサポートされている解析ドキュメント

    C ++を使用すると、を含む他の形式を簡単に解析できます。

    ODP (OpenDocumentプレゼンテーション形式)
    PPTX (XMLプレゼンテーション形式を開く)