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

Analizza i formati PPT in C++

Analisi di documenti PPT nativi e ad alte prestazioni utilizzando Aspose.Slides lato server per API C++, senza l’uso di software come Microsoft o Adobe PDF.

Come analizzare il file PPT usando C++

Per analizzare il file PPT, useremo

Aspose.Slides per C++

API che è un’API di analisi dei documenti ricca di funzionalità, potente e facile da usare per la piattaforma C++. Puoi scaricare direttamente la sua ultima versione, basta aprire

NuGet

gestore pacchetti, cerca Aspose.Slides.Cpp e installa. È inoltre possibile utilizzare il seguente comando dalla Console di gestione pacchetti.

Comando


PM> Install-Package Aspose.Slides.Cpp

Passaggi per analizzare i file PPT in C++

È possibile eseguire un’analisi di base del documento con le API Aspose.Slides for C++ con poche righe di codice.

  1. Carica file PPT.

  2. Ottieni una matrice di oggetti ITextFrame della prima diapositiva.

  3. Passa attraverso l’array di TextFrames

  4. Scorri i paragrafi nell’attuale ITextFrame.

  5. Passa in rassegna le porzioni nell’Iparagrafo corrente.

  6. Visualizza il testo.

Requisiti di sistema

Aspose.Slides per C++ supporta su tutte le principali piattaforme e sistemi operativi. Assicurati di avere i seguenti prerequisiti.

  • Microsoft Windows o un sistema operativo compatibile con C++ Runtime Environment per Windows 32 bit, Windows 64 bit e Linux 64 bit.
  • Aspose.Slides per C++ DLL a cui si fa riferimento nel progetto.
 

Analizza file 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());
		}
	}
}  

    
 
  • Informazioni su Aspose.Slides per l'API C++

    L’API Aspose.Slides può essere utilizzata per leggere, scrivere, manipolare e convertire documenti Microsoft PowerPoint in PDF, XPS, HTML, TIFF, ODP e vari altri formati. Si possono creare nuovi file da zero e salvarli nei relativi formati supportati. Aspose.Slides è un’API standalone per la creazione, l’analisi o la manipolazione di presentazioni, diapositive ed elementi e non dipende da alcun software come Microsoft o 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 Cos'è il formato file 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.

    Leggi di più

    Altri documenti di analisi supportati

    Usando C++, è possibile analizzare facilmente altri formati tra cui.

    ODP (Formato di presentazione OpenDocument)
    PPTX (Apri il formato di presentazione XML)