Browse our Products

Aspose.Slides for Java 25.10 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-45090Table is exported as multiple

tags when converting PPTX to PDF/UA

Enhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-45088Formula is exported as multiple

tags when converting PPTX to PDF/UA

Enhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/
SLIDESNET-45092Missing marked content references when converting PPTX to PDF/UAEnhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/#accessibility-and-compliance-standards-for-pdf
SLIDESNET-45089Multi-line headings are split into separate heading tags when converting PPTX to PDF/UAEnhancementhttps://docs.aspose.com/slides/net/convert-powerpoint-to-pdf/#accessibility-and-compliance-standards-for-pdf
SLIDESJAVA-39577Use Aspose.Slides for Net 25.10 featuresEnhancement
SLIDESJAVA-39198PPTX with EMF to PDF conversion problemsBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-39153Returning an invalid value from the same cell in chart’s workbookBughttps://docs.aspose.com/slides/java/chart-workbook/
SLIDESJAVA-39713wk: Chart text not in right position after conversion to imageBughttps://docs.aspose.com/slides/java/create-shape-thumbnails/
SLIDESJAVA-39708Setting the fill and border options of chart data labels to AutomaticBughttps://docs.aspose.com/slides/java/create-chart/
SLIDESJAVA-39267List type is changed when loading and saving a PPT fileBughttps://docs.aspose.com/slides/java/save-presentation/
SLIDESJAVA-38864Font color of text portion is not read correctly from PPTXBughttps://docs.aspose.com/slides/java/shape-effective-properties/
SLIDESJAVA-39089The footer is not consistent when saving PPT to PPTBughttps://docs.aspose.com/slides/java/save-presentation/

Public API Changes

Added New Enumeration: FontStyleType

The FontStyleType enumeration specifies formatting styles that can be applied to text.

public final class FontStyleType
{
    /**
     * <p>
     * Standard text.
     * </p>
     */
    public static final int Regular = 0;
    /**
     * <p>
     * Bold text.
     * </p>
     */
    public static final int Bold = 1;
    /**
     * <p>
     * Italic text.
     * </p>
     */
    public static final int Italic = 2;
    /**
     * <p>
     * Underlined text.
     * </p>
     */
    public static final int Underline = 4;
    /**
     * <p>
     * Text crossed out with a horizontal line.
     * </p>
     */
    public static final int Strikeout = 8;
}

Added New Method: bitmap(float scale, ImageFormat imageFormat)

The new method, bitmap, have been added to the SlideImageFormat class. It replaces the obsolete method that used String as a parameter type.

Marked as Obsolete

The following method has been marked as obsolete:

  • SlideImageFormat.bitmap(float scale, String imgFormat)

The following class has been marked as obsolete:

  • com.aspose.slides.FontStyle