Browse our Products

Aspose.Slides for .NET 24.5 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-44522API returns wrong Excel sheet namesInvestigationhttps://docs.aspose.com/slides/net/chart-workbook/
SLIDESNET-44410Saving a password-protected PPT file no longer throws an exceptionInvestigation
SLIDESNET-44399Output file size differs between Windows and Linux when converting the presentations to PDFInvestigation
SLIDESNET-44420Set a default font size for all text boxes on all the slidesFeature
SLIDESNET-44282Set the transparency for tablesFeaturehttps://docs.aspose.com/slides/net/manage-table/
SLIDESNET-44531PPTX to PPTX creates discrepancies for chart labels color and styleBug
SLIDESNET-44519wk: Blank image when converting the presentationBughttps://docs.aspose.com/slides/net/convert-presentation/
SLIDESNET-44518Process hangs and require a lot of memory while saving the PPTX to HTMLBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-html/
SLIDESNET-44514Text frame reading never endsBughttps://docs.aspose.com/slides/net/manage-smartart-shape-node/
SLIDESNET-44512Chart data labels lose formatting after saving presentationBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44511Footer Section Discrepancy in PPTX to PDF ConversionBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44504PPTX to PPTX: Saving pptx consumes a lot of memoryBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44502The treemap chart is not rendering correctlyBug
SLIDESNET-44500KeyNotFoundException occurs when converting PPTX to ODPBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/
SLIDESNET-44499Slide background is not applied when converting PPTX to ODPBughttps://docs.aspose.com/slides/net/convert-openoffice-odp/
SLIDESNET-44495Date format changes when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44493Graphics are displayed incorrectly when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44488KeyNotFoundException occurs when resaving the presentationBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44481PPTX to PDF is not converting image when SaveMetafilesAsPng is falseBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/#convert-powerpoint-to-pdf-with-custom-options
SLIDESNET-44478PPTX to PDF: Chinese characters are rotated upon renderingBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44474Blurring and disappearing images when converting presentations to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44470Defined “X” in the chart is not shown in the exported PDF fileBughttps://docs.aspose.com/slides/net/conversion-to-pdf/
SLIDESNET-44467Line break in text appears when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-44422Chart bars are missing when converting presentation slide to imageBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-44074A horizontal line artifact appears when converting chart to imageBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-43962PPTX to PNG: Text highlights not rendered correctlyBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-43832Background color is lost when converting PPTX to HTML5Bughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-43831Converting PPTX to HTML5 causes InvalidOperationExceptionBughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-43473“SolidFillColor is unavailable” error appears when converting PPTX to HTML5Bughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-43369Converting PPT to HTML5 throws ArgumentOutOfRangeExceptionBughttps://docs.aspose.com/slides/net/export-to-html5/
SLIDESNET-430753D effects are displayed incorrectly when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-42917PPT to PPT: target file is not consistent with the source fileBughttps://docs.aspose.com/slides/net/save-presentation/

Public API Changes

ShapeElement and ShapeUtil members declared as obsolete Modern API

The following methods and properties are declared as obsolete and will be removed in version 24.8:

  • ShapeElement.GraphicsPath
  • ShapeUtil.GraphicsPathToGeometryPath(GraphicsPath graphicsPath)
  • ShapeUtil.GeometryPathToGraphicsPath(IGeometryPath geometryPath)

IPresentationAnimationPlayer GetFrame() and FrameTickEventArgs GetFrame return value type replaced to IImage

The return type of the GetFrame method for the IPresentationAnimationPlayer interface and PresentationAnimationPlayer implementation was replaced to IImage from Bitmap. This is required as a part of the Modern API transition.

FrameTickEventArgs.GetFrame method return value is also replaced from Bitmap to IImage.

ICellFormat.Transparency and ITableFormat.Transparency properties added

New property Transparency added to the ICellFormat and ITableFormat. It represents the transparency of the fill color.

Example:

using (Presentation presentation = new Presentation("pres.pptx"))
{
    ITable table = (ITable)presentation.Slides[0].Shapes[0];
    table.TableFormat.Transparency = 0.5f;
}