Analizza i formati ODP in C#
Analisi di documenti ODP nativi e ad alte prestazioni utilizzando Aspose.Slides lato server per API .NET, senza l’uso di software come Microsoft o Adobe PDF.
Come analizzare il file ODP usando C#
Per analizzare il file ODP, useremo
API che è un’API di manipolazione dei documenti ricca di funzionalità, potente e facile da usare per la piattaforma C#. Aprire
gestore pacchetti, cerca Aspose.Slides e installa. È inoltre possibile utilizzare il seguente comando dalla Console di gestione pacchetti.
Comando
PM> Install-Package Aspose.Slides.NET
Passaggi per analizzare i file ODP in C#
È possibile eseguire un’analisi di base del documento con le API Aspose.Slides for .NET con poche righe di codice.
Carica file ODP.
Ottieni tutte le cornici di testo.
Scorri ogni parte del paragrafo.
Ottieni l’output richiesto come testo, carattere, ecc.
Requisiti di sistema
Le nostre API sono supportate su tutte le principali piattaforme e sistemi operativi. Prima di eseguire il codice seguente, assicurati di avere i seguenti prerequisiti sul tuo sistema.
- Microsoft Windows o un sistema operativo compatibile con piattaforme .NET Framework, .NET Core, Windows Azure, Mono o Xamarin
- Ambiente di sviluppo come Microsoft Visual Studio
- Aspose.Slides per .NET DLL a cui si fa riferimento nel progetto - Installa da NuGet utilizzando il pulsante Download sopra
Analizza file ODP - C#
//Extract Text from the Whole odp Presentation
Presentation odpPresentation = new Presentation(dataDir + "demo.odp");
//Get an Array of ITextFrame objects from all slides in the PPTX
ITextFrame[] textFramesPPTX = Aspose.Slides.Util.SlideUtil.GetAllTextFrames(odpPresentation, true);
//Loop through the Array of TextFrames
for (int i = 0; i < textFramesPPTX.Length; i++)
//Loop through paragraphs in current ITextFrame
foreach (IParagraph para in textFramesPPTX[i].Paragraphs)
//Loop through portions in the current IParagraph
foreach (IPortion port in para.Portions)
{
//Display text in the current portion
Console.WriteLine(port.Text);
//Display font height of the text
Console.WriteLine(port.PortionFormat.FontHeight);
//Display font name of the text
if (port.PortionFormat.LatinFont != null)
Console.WriteLine(port.PortionFormat.LatinFont.FontName);
}
Informazioni su Aspose.Slides per .NET API
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 ODP Parser Live Demos
Extract text and images from ODP documents right now by visiting our Live Demos website . The live demo has the following benefits
ODP Cos'è il formato file ODP
Files with ODP extension represent presentation file format used by OpenOffice.org in the OASISOpen standard. A presentation file is a collection of slides where each slide can comprise of text, images, formatting, animations, and other media. These slides are presented to audience in the form of slideshows with custom presentation settings. ODP files can be opened by applications that conform to the OpenDocument format (such as OpenOffice or StarOffice).
Leggi di più