Browse our Products

Aspose.Slides for .NET 24.1 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-443484.5 MB ODP file after conversion to PDF becomes 500+ MBEnhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-43871Individual text boxes are generated when importing PDF to PPTXEnhancement
SLIDESNET-43561Embedded fonts render incorrectly in LinuxEnhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-jpg/
SLIDESNET-44343Presentation becomes corrupted after the font is embeddedBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44341Scale values of chart X-axis are shifting when converting from PPTX to PDFBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-44340PPTX to PDF: Text orientation reversed on exportBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44323Failed to replace slide titlesBug
SLIDESNET-44322Content differs when converting the first slide to an imageBughttps://docs.aspose.com/slides/net/convert-slide/
SLIDESNET-44285Images are improperly rendered after converting PPTX to PDF fileBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44152Aspose.Slides ignores installed fonts when exporting to PNG or JPEGBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-437053D model’s frame returns to its original size after changing the perspectiveBughttps://docs.aspose.com/slides/net/shape-manipulations/
SLIDESNET-43643Chart data labels are converted to callouts while exporting to HTMLBug
SLIDESNET-43640Getting ChartDataWorkbook throws ArgumentOutOfRangeExceptionBug
SLIDESNET-43605Charts are missing when converting ODP to PPTXBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/
SLIDESNET-43588Charts are not displayed when converting ODP to PPTXBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/
SLIDESNET-36026Charts and table are missing in ODP to PPTX conversionBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/

Public API Changes

PDF import detect tables option added

The PdfImportOptions.DetectTables option has been added to ensure that when importing PDF tables are automatically detected and imported as a table in Slide.

Below is an example of PDF import with tables detecting:

using (Presentation pres = new Presentation())
{
    using (Stream stream = new FileStream("document.pdf", FileMode.Open, FileAccess.Read, FileShare.Read))
    {
        pres.Slides.AddFromPdf(stream, new PdfImportOptions { DetectTables = true });
    }

    pres.Save("fromPdfDocument.pptx", SaveFormat.Pptx);
}