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 Linux

Download  Support Forum 

File Details

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

Description

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

File Details

Ensure flawless presentation creation on Linux with Aspose.Slides for C++ 24.1. This update enables developers to experience smooth font rendering, enhanced compatibility with the .NET 24.1 version, and more.

Key Highlights

  • Accurate Font Rendering on Linux: Aspose.Slides for C++ 24.1 includes optimized font rendering functionality, which ensures embedded fonts are displayed correctly within presentations.
  • Import PDFs with Tables: We have added a new method, ‘PdfImportOptions::set_DetectTables()’, to this release of the C++ PowerPoint API, which enables automatic detection and import of the tables in PDF documents.
  • Compatibility Boost: With Aspose.Slides for C++ 24.1 version, developers can experience enhanced compatibility with features introduced in Aspose.Slides for .NET 24.1.

Table Detection 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 Linux:

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