Browse our Products

Aspose.Slides for Node.js via Java 25.10 Release Notes

KeySummaryCategory
SLIDESNODEJS-108Use Aspose.Slides for Java 25.10 featuresEnhancement
SLIDESNODEJS-145Update java package to support Node.js 22Enhancement

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