PNG JPG BMP TIFF PPTX
Aspose.Slides  for .NET

Analizar formatos PPTX en C#

Análisis de documentos PPTX nativos y de alto rendimiento utilizando Aspose.Slides del lado del servidor para las API de .NET, sin el uso de ningún software como Microsoft o Adobe PDF.

Cómo analizar archivos PPTX usando C#

Para analizar el archivo PPTX, usaremos

Aspose.Slides para .NET

API, que es una API de manipulación de documentos rica en funciones, potente y fácil de usar para la plataforma C#. Abierto

NuGet

administrador de paquetes, busque Aspose.Diapositivas e instalar También puede usar el siguiente comando desde la Consola del administrador de paquetes.

Dominio


PM> Install-Package Aspose.Slides.NET

Pasos para analizar archivos PPTX en C#

Se puede realizar un análisis básico de documentos con Aspose.Slides for .NET API con solo unas pocas líneas de código.

  1. Cargue el archivo PPTX.

  2. Obtener todos los marcos de texto.

  3. Recorra cada porción de párrafo.

  4. Obtenga la salida requerida como texto, fuente, etc.

Requisitos del sistema

Nuestras API son compatibles con todas las principales plataformas y sistemas operativos. Antes de ejecutar el código a continuación, asegúrese de tener los siguientes requisitos previos en su sistema.

  • Microsoft Windows o un sistema operativo compatible con las plataformas .NET Framework, .NET Core, Windows Azure, Mono o Xamarin
  • Entorno de desarrollo como Microsoft Visual Studio
  • Aspose.Slides para .NET DLL a la que se hace referencia en su proyecto - Instale desde NuGet usando el botón Descargar arriba
 

Analizar archivos PPTX - C#

//Extract Text from the Whole pptx Presentation 
    Presentation pptxPresentation = new Presentation(dataDir + "demo.pptx");
    
    //Get an Array of ITextFrame objects from all slides in the PPTX
    ITextFrame[] textFramesPPTX = Aspose.Slides.Util.SlideUtil.GetAllTextFrames(pptxPresentation, 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);
            }  

    
 
  • Acerca de Aspose.Slides para la API de .NET

    Aspose.Slides API se puede utilizar para leer, escribir, manipular y convertir documentos de Microsoft PowerPoint a PDF, XPS, HTML, TIFF, ODP y varios otros formatos. Uno puede crear nuevos archivos desde cero y guardarlos en los formatos compatibles relevantes. Aspose.Slides es una API independiente para crear, analizar o manipular presentaciones, diapositivas y elementos y no depende de ningún software como Microsoft u OpenOffice.

    Online PPTX Parser Live Demos

    Extract text and images from PPTX 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 PPTX files.
      It will be parsed instantly.

    PPTX Qué es PPTX Formato de archivo

    Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format. 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.

    Leer más

    Otros formatos de análisis admitidos

    Usando C#, uno puede analizar fácilmente otros formatos, incluidos.

    ODP (Formato de presentación de OpenDocument)
    PPT (Microsoft PowerPoint 97-2003)