PNG JPG BMP TIFF PPTX
Aspose.Slides  for .NET

Mengurai Format PPTX di C#

Penguraian dokumen PPTX asli dan berkinerja tinggi menggunakan Aspose.Slides sisi server untuk .NET API, tanpa menggunakan perangkat lunak apa pun seperti Microsoft atau Adobe PDF.

Cara Parsing File PPTX Menggunakan C#

Untuk mengurai file PPTX, kami akan menggunakan

Aspose.Slides untuk .NET

API yang merupakan API manipulasi dokumen yang kaya fitur, kuat, dan mudah digunakan untuk platform C#. Membuka

NuGet

manajer paket, cari Aspose.Slide dan menginstal. Anda juga dapat menggunakan perintah berikut dari Package Manager Console.

Memerintah


PM> Install-Package Aspose.Slides.NET

Langkah-langkah Parsing File PPTX di C#

Penguraian dokumen dasar dengan Aspose.Slides for .NET API dapat dilakukan hanya dengan beberapa baris kode.

  1. Muat file PPTX.

  2. Dapatkan semua bingkai teks.

  3. Ulangi setiap bagian paragraf.

  4. Dapatkan output yang diperlukan seperti teks, font, dll.

Persyaratan sistem

API kami didukung di semua platform utama dan Sistem Operasi. Sebelum mengeksekusi kode di bawah ini, pastikan Anda memiliki prasyarat berikut di sistem Anda.

  • Microsoft Windows atau OS yang kompatibel dengan .NET Framework, .NET Core, Windows Azure, Mono atau Platform Xamarin
  • Lingkungan pengembangan seperti Microsoft Visual Studio
  • Aspose.Slides untuk .NET DLL yang dirujuk dalam proyek Anda - Instal dari NuGet menggunakan tombol Unduh di atas
 

Parsing File 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);
            }  

    
 
  • Tentang Aspose.Slides untuk .NET API

    Aspose.Slides API dapat digunakan untuk membaca, menulis, memanipulasi, dan mengonversi dokumen Microsoft PowerPoint ke PDF, XPS, HTML, TIFF, ODP, dan berbagai format lainnya. Seseorang dapat membuat file baru dari awal dan menyimpannya dalam format yang didukung yang relevan. Aspose.Slides adalah API mandiri untuk membuat, mengurai, atau memanipulasi presentasi, slide, dan elemen dan tidak bergantung pada perangkat lunak apa pun seperti Microsoft atau 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 Apa itu Format File PPTX

    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.

    Baca lebih lanjut

    Format Parsing yang Didukung Lainnya

    Menggunakan C#, seseorang dapat dengan mudah mengurai format lain termasuk.

    ODP (Format Presentasi OpenDocument)
    PPT (Microsoft PowerPoint 97-2003)