Browse our Products

Aspose.Slides for .NET 24.10 Release Notes

New Features and Improvements

KeySummaryCategoryRelated Documentation
SLIDESNET-44693Coordinates of the paragraph are returned incorrectlyBug
SLIDESNET-44701Importing HTML string to presentation throws InvalidOperationExceptionBug
SLIDESNET-36521IndexOutOfRange exception on loading presentationBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44200Vertical text on EMF image is rotated when converting PPT to PDFBug
SLIDESNET-44406Exporting presentations to HTML5 with externally linked images throws NotImplementedExceptionBug
SLIDESNET-44537Font height for chart data labels is not applied when saving the presentation to PDFBug
SLIDESNET-35765Table getting disturbed after the PPT presentation re-savingBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44708PPTX document with Waterfall charts gets corrupted when editing itBug
SLIDESNET-43861SVG image becomes blurry when converting presentation slides to thumbnails or PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint/
SLIDESNET-44685Chart is missing when converting slide to imageBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-jpg/
SLIDESNET-39700Pptx to png not properly convertedBug
SLIDESNET-44682PPTX to PNG: White vertical/horizontal linesBug
SLIDESNET-44681PPTX to PNG: ToBitmap() returns shape with horizontal/vertical linesBug
SLIDESNET-44602WK: Chart converted to PNG has wrong position of some valuesBug
SLIDESNET-44683PPTX to PNG: Content not rendered correctlyBug
SLIDESNET-44388Failed to change the width and height of tablesBughttps://docs.aspose.com/slides/net/manage-table/
SLIDESNET-44321Charts are displayed incorrectly when converting slides to imagesBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-png/
SLIDESNET-43619Getting the vanishing point option of Zoom animationFeature
SLIDESNET-44492Horizontal lines appear when converting PPTX to PDFBughttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-36496Loading the presentation throws Argument out of range exceptionBug
SLIDESNET-44380Saving PPTM to PPT throws PptExceptionBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44508wk: Saving presentation hangsBughttps://docs.aspose.com/slides/net/manage-text/
SLIDESNET-44523ValidateChartLayout method throws “Wrong step value, can’t be equal to 0” exceptionBug
SLIDESNET-44563Connector line is broken when converting PPTX to HTMLBug
SLIDESNET-44569Chart title disappears on savingBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-39146Ppt changed after savingBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-37130Unexpected error calculating shape size on saving pptBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-39145Shapes becomes bold after saving pptBughttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-39579Text spill out of shape in exported PDFBug

Public API Changes

New Enum Members: EffectSubtype.SlideCenter and EffectSubtype.ObjectCenter Have Been Added

New members, SlideCenter and ObjectCenter, have been added to the EffectSubtype enum. These effect subtypes are used with the FadedZoom effect type. The following example demonstrates how these members can be used:

using (var presentation = new Presentation("pres.pptx"))
{
    IEffect effect = presentation.Slides[0].Timeline.MainSequence[0];
    
    if (effect.Type == EffectType.FadedZoom)
    {
        Console.WriteLine("{0} - {1}", effect.Type, effect.Subtype);
    }
}