تجزیه فرمت های PPT در C++
تجزیه سند PPT بومی و با کارایی بالا با استفاده از Aspose.Slides سمت سرور برای C++ API، بدون استفاده از نرم افزاری مانند Microsoft یا Adobe PDF.
چگونه فایل PPT را با استفاده از C++ تجزیه کنیم
برای تجزیه فایل PPT، از
API که یک API تجزیه اسناد غنی، قدرتمند و آسان برای استفاده برای پلتفرم C++ است. می توانید آخرین نسخه آن را مستقیما دانلود کنید، فقط باز کنید
مدیر بسته، جستجو کنید Aspose.Slides.Cpp و نصب کنید. همچنین می توانید از دستور زیر در کنسول Package Manager استفاده کنید.
فرمان
PM> Install-Package Aspose.Slides.Cpp
مراحل تجزیه فایل های PPT در C++
تجزیه سند پایه با Aspose.Slides for C++ APIها را می توان تنها با چند خط کد انجام داد.
فایل PPT را بارگیری کنید.
آرایه ای از اشیاء ITextFrame اسلاید اول را دریافت کنید.
از طریق آرایه TextFrames حلقه بزنید
پاراگراف ها را در ITextFrame فعلی حلقه بزنید.
در آی پاراگراف فعلی، بخش ها را حلقه بزنید.
نمایش متن
سیستم مورد نیاز
Aspose.Slides برای C++ در تمام سیستم عامل ها و سیستم عامل های اصلی پشتیبانی می کند. لطفا مطمئن شوید که پیش نیازهای زیر را دارید.
- مایکروسافت ویندوز یا یک سیستم عامل سازگار با C++ Runtime Environment برای ویندوز 32 بیت، ویندوز 64 بیت و لینوکس 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 for 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
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.
ادامه مطلب