Browse our Products

Aspose.Slides for .NET 23.8 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-43701How to use PortionFormat.AlternativeLanguageId propertyInvestigation
SLIDESNET-43983.NET6: MacOS supportFeature
SLIDESNET-43744Slide Show / Set Up / Show Media Controls settingFeature
SLIDESNET-44070Loading corrupted presentation throws PptxReadExceptionEnhancementhttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44031Add an option to the ZipFile to read in recovery modeEnhancementhttps://docs.aspose.com/slides/net/open-presentation/
SLIDESNET-44094PresentationPlayer.GetFrame method throws ArgumentExceptionBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-video/
SLIDESNET-44082Converting PPTX to PPT throws ArrayIndexOutOfBoundsExceptionBughttps://docs.aspose.com/slides/net/convert-pptx-to-ppt/
SLIDESNET-44076Memory leak while adding OLE object frame to a presentationBughttps://docs.aspose.com/slides/net/manage-ole/
SLIDESNET-44068PresentationPlayer.GetFrame method throws AccessViolationExceptionBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-video/
SLIDESNET-44049Convert to PDF adds negative values to Y axis of a chartBughttps://docs.aspose.com/slides/net/powerpoint-charts/
SLIDESNET-44022PPT to XPS: The chart background is black in the output fileBughttps://docs.aspose.com/slides/net/convert-presentation-to-xps/
SLIDESNET-43993Text measurement issue for font in GB 18030-2022 standardBughttps://docs.aspose.com/slides/net/font-replacement/
SLIDESNET-43991Chart labels are changed after conversion to PDFBughttps://docs.aspose.com/slides/net/chart-data-label/
SLIDESNET-43980PPTX to PDF: Blurry imagesBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-43927System.StackOverflowException raised on save presentationsBughttps://docs.aspose.com/slides/net/convert-presentation/
SLIDESNET-43913Chart is lost when saving a presentation to PDF fileBughttps://docs.aspose.com/slides/net/powerpoint-charts
SLIDESNET-43802Elements of EMF image are missing when converting slide to PNGBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-43774Parsing of table ‘GPOS’ has failed exceptionBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-html/#convert-powerpoint-to-html-with-original-fonts

Public API Changes

Markdown export - Flavor, MarkdownExportType, NewLineType and MarkdownSaveOptions moved to Aspose.Slides.Export namespace

The classes and enums related to markdown export have been moved from namespace Aspose.Slides.DOM.Export.Markdown to Aspose.Slides.Export.

The following classes and enums have been moved:

  • MarkdownSaveOptions
  • NewLineType
  • MarkdownExportType
  • Flavor

ShowMediaControls property has been added for SlideShowSettings

The ShowMediaControls property was added for the SlideShowSettings class, which Represents the slide show settings for the presentation.

Example:

using (Presentation pres = new Presentation())
{
    pres.SlideShowSettings.ShowMediaControls = true;
}