Browse our Products

Aspose.Slides for .NET 20.6 Release Notes

KeySummaryCategory
SLIDESNET-41680WriteAsSVG with embedded fontsInvestigation
SLIDESNET-41509Conversion to PDF - accessibility standards Feature
SLIDESNET-41023PDF/UA compliance supportFeature
SLIDESNET-40996Tagged PDF exportFeature
SLIDESNET-33764Support for Open Type Font (OTF) in Aspose.SlidesFeature
SLIDESNET-41930Pptx to Html: Slide converted to PNG image when NotesPosition is set Enhancement
SLIDESNET-41892Faulty link in the web view of PDF fileEnhancement
SLIDESNET-41703Text failed to extract in the generated presentationEnhancement
SLIDESNET-41702Can’t extract all text from slidesEnhancement
SLIDESNET-37215getAllTextBoxes not getting text from tableEnhancement
SLIDESNET-41946Shape.OfficeInteropShapeId differs in different Aspose versionsBug
SLIDESNET-41944SVG not properly added - labels repositionedBug
SLIDESNET-41936System.ArgumentOutOfRangeException has been thrown while cloning slideBug
SLIDESNET-41934Arrows are improperly rendered in generated thumbnailBug
SLIDESNET-41933Cloning slides throws the exception “Parsing of table ‘GPOS’ has failed.”Bug
SLIDESNET-41932combination of animations failsBug
SLIDESNET-41929After converting the chart to SVG, the vertical lines are moved from their original positionsBug
SLIDESNET-41928After converting the chart to SVG, the font is different in outputs and the superscript number 1 is moved to the rightBug
SLIDESNET-41927After converting the chart to SVG, the text is not in the same font and left side title is in one rowBug
SLIDESNET-41926After converting the chart to SVG, text on the axis is not complete on 3 of the titlesBug
SLIDESNET-41923NullReferenceException on writing to SVGBug
SLIDESNET-41921Slide thumbnails are not properly generatedBug
SLIDESNET-41918Aspose.Slides 20.5: An exception is thrown when loading a presentationBug
SLIDESNET-41910The 2D effects lost in generated PNGBug
SLIDESNET-41906HyperLinks are lost when saving the presentation as ODP Bug
SLIDESNET-41905Application hangs when converting a PPTX to PDFBug
SLIDESNET-41904Wrong thumbnail of gradient round shapeBug
SLIDESNET-41903Chart improperly rendered in exported PDFBug
SLIDESNET-41898Rounded rectangle improper renderingBug
SLIDESNET-41896Unknown Source exception on exporting to PDFBug
SLIDESNET-41890Aspose.Slides.PptxReadException while loading the PPTXBug
SLIDESNET-41887TextOutline rendering is missing in exported SVGBug
SLIDESNET-41886The generated PDF has improper margin settingsBug
SLIDESNET-41827Wrong thumbnail generated for WMF image in slideBug
SLIDESNET-41808Unable to extract data behind linked chart Bug
SLIDESNET-41740ArgumentException on exporting to PDFBug
SLIDESNET-41613Text spacing is observed in generated PDF and thumbnailBug
SLIDESNET-41161If one formula is inserted as an equation, the entire slide is converted to an imageBug
SLIDESNET-40739Pptx to pdf not properly convertedBug
SLIDESNET-36661Chart missing in generated PDFBug

Public API Changes

Property SpreadsheetOptions.RecoverWorkbookFromChartCache has been added

A new property SpreadsheetOptions.RecoverWorkbookFromChartCache has been added. If the data source of the chart is an external workbook and it’s not available, it will be recovered from the chart cache.

LoadOptions lo = new LoadOptions();
lo.SpreadsheetOptions.RecoverWorkbookFromChartCache = true;
using (Presentation pres = new Presentation("Presentation.pptx", lo))
{
    IChart chart = pres.Slides[0].Shapes[0] as IChart;
    IChartDataWorkbook wb = chart.ChartData.ChartDataWorkbook;
    ...
}