Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Slides for C++ 24.1 macOS

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 169.36MB
  • Date Added:
  • 24/1/2024

Description

It contains Aspose.Slides for C++ 24.1 macOS release.

File Details

Aspose.Slides for C++ 24.1 brings seamless PowerPoint to PDF conversion, improved table detection, and additional features to macOS users. With this release of the C++ PowerPoint API, you can develop robust presentation processing applications enriched with advanced capabilities.

Key Highlights

  • Improved PDF Import: You can automatically detect and import tables from PDF files within your PowerPoint document manipulation applications using this release of the C++ API on macOS.
  • Optimized PDF Conversions: This release includes an enhanced PDF conversion functionality, allowing developers to effortlessly convert ODP to PPTX format with considerably reduced file size.
  • Enhanced Compatibility: We have introduced compatibility enhancements to Aspose.Slides for C++ 24.1 for developers to seamlessly incorporate features from the .NET 24.1 version.

Detect and Import Tables in PDFs

This C++ code snippet illustrates how you can detect and import tables while importing PDF documents with the help of the newly added PdfImportOptions::set_DetectTables() method on macoS:

System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>();
System::SharedPtr<System::IO::Stream> stream = System::MakeObject<System::IO::FileStream>(
    u"document.pdf", System::IO::FileMode::Open, System::IO::FileAccess::Read, System::IO::FileShare::Read);

System::SharedPtr<PdfImportOptions> options = System::MakeObject<PdfImportOptions>();
options->set_DetectTables(true);

pres->get_Slides()->AddFromPdf(stream, options);
pres->Save(u"fromPdfDocument.pptx", SaveFormat::Pptx);

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for C++ 24.1 Release Notes.

 English