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 Windows

Download  Support Forum 

File Details

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

Description

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

File Details

C++ developers can upgrade to Aspose.Slides for C++ 24.1 on Windows and experience a significant improvement in PDF conversions, table detection in PDF documents, and more.

Key Highlights

  • Enhanced PDF Conversion: We have optimized ODP to PDF conversion, and it now produces significantly smaller file sizes, reducing storage requirements while exporting to PDF using Aspose.Slides for C++ 24.1.
  • Automatic Table Detection in PDFs: With the addition of the PdfImportOptions::set_DetectTables() method, you can automatically detect tables during PDF import on Windows.
  • Compatibility with .NET 24.1 Version: Developers can leverage features from Aspose.Slides for .NET 24.1 as we have enhanced compatibility with the .NET version in this release of the C++ PowerPoint API.

Detect Tables While Importing PDFs

In this C++ code sample, we have demonstrated the usage of the PdfImportOptions::set_DetectTables() method to automatically detect tables when importing PDF documents using Aspose.Slides for C++ 24.1 on Windows:

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