Browse our Products

Aspose.Slides for Java 24.10 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-43619Getting the vanishing point option of Zoom animationFeaturehttps://docs.aspose.com/slides/net/shape-animation/
SLIDESJAVA-39046Use Aspose.Slides for Net 24.10 featuresEnhancement
SLIDESJAVA-38992Getting the vanishing point option of Zoom animationFeaturehttps://docs.aspose.com/slides/java/shape-animation/
SLIDESJAVA-39540Doughnut charts with one series are broken when converting PPTX to PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-39535PPTX document with Waterfall charts gets corrupted when editing itBughttps://docs.aspose.com/slides/java/save-presentation/
SLIDESJAVA-39308Vertical text on EMF image is rotated when converting PPT to PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-35171Unexpected error calculating shape sizeBughttps://docs.aspose.com/slides/java/paragraph/
SLIDESJAVA-39357Charts are displayed incorrectly when converting slides to imagesBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-png/
SLIDESJAVA-39423Horizontal lines appear when converting PPTX to PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-39433wk: Saving presentation hangsBughttps://docs.aspose.com/slides/java/save-presentation/
SLIDESJAVA-39490WK: Chart converted to PNG has wrong position of some valuesBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-png/

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:

Presentation presentation = new Presentation("pres.pptx");
try {
    IEffect effect = presentation.getSlides().get_Item(0).getTimeline().getMainSequence().get_Item(0);

    if (effect.getType() == EffectType.FadedZoom)
    {
        System.out.println(effect.getType() + " - " + effect.getSubtype());
    }
} finally {
    if (presentation != null) presentation.dispose();
}