Browse our Products
Aspose.Slides for Node.js via Java 25.10 Release Notes
This page contains release notes for Aspose.Slides for Node.js via Java
Key | Summary | Category |
---|---|---|
SLIDESNODEJS-108 | Use Aspose.Slides for Java 25.10 features | Enhancement |
SLIDESNODEJS-145 | Update java package to support Node.js 22 | Enhancement |
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