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

แยกวิเคราะห์รูปแบบ PPT ใน C++

การแยกวิเคราะห์เอกสาร PPT ดั้งเดิมและประสิทธิภาพสูงโดยใช้ Aspose.Slides ฝั่งเซิร์ฟเวอร์สำหรับ C++ API โดยไม่ต้องใช้ซอฟต์แวร์ใดๆ เช่น Microsoft หรือ Adobe PDF

วิธีแยกวิเคราะห์ไฟล์ PPT โดยใช้ C++

เพื่อแยกวิเคราะห์ไฟล์ PPT เราจะใช้

Aspose.Slides สำหรับ C++

API ซึ่งเป็น API การแยกวิเคราะห์เอกสารที่มีประสิทธิภาพและใช้งานง่ายสำหรับแพลตฟอร์ม C++ คุณสามารถดาวน์โหลดเวอร์ชันล่าสุดได้โดยตรง เพียงแค่เปิด

NuGet

package manager ค้นหา Aspose.Slides.Cpp และติดตั้ง คุณยังสามารถใช้คำสั่งต่อไปนี้จาก Package Manager Console

สั่งการ


PM> Install-Package Aspose.Slides.Cpp

ขั้นตอนในการแยกวิเคราะห์ไฟล์ PPT ใน C++

การแยกวิเคราะห์เอกสารพื้นฐานด้วย Aspose.Slides for C++ API สามารถทำได้โดยใช้โค้ดเพียงไม่กี่บรรทัด

  1. โหลดไฟล์ PPT

  2. รับอาร์เรย์ของวัตถุ ITextFrame ของสไลด์แรก

  3. วนรอบอาร์เรย์ของ TextFrames

  4. วนซ้ำย่อหน้าใน ITextFrame ปัจจุบัน

  5. วนซ้ำบางส่วนใน I Paragraph ปัจจุบัน

  6. แสดงข้อความ

ความต้องการของระบบ

Aspose.Slides สำหรับ C ++ รองรับบนแพลตฟอร์มหลักและระบบปฏิบัติการทั้งหมด โปรดตรวจสอบให้แน่ใจว่าคุณมีข้อกำหนดเบื้องต้นดังต่อไปนี้

  • Microsoft Windows หรือ OS ที่เข้ากันได้กับ C++ Runtime Environment สำหรับ Windows 32 บิต, Windows 64 บิต และ Linux 64 บิต
  • Aspose.Slides สำหรับ C ++ DLL ที่อ้างอิงในโครงการของคุณ
 

แยกวิเคราะห์ไฟล์ 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 สำหรับ 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)