Browse our Products

Aspose.Slides for Java 22.3 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-42621Add support Bevel for chartsFeaturehttps://docs.aspose.com/slides/net/create-chart/
SLIDESNET-42959Introduce a flag to indicate if shape was created as text box or notEnhancement
SLIDESNET-43061Throw a meaningful exception when saving an already Disposed PresentationFeaturehttps://docs.aspose.com/slides/net/save-presentation/
SLIDESJAVA-38268Use Aspose.Slides for Net 22.3 featuresEnhancement
SLIDESJAVA-38155Fails to round values of data labels for Pie and Pyramid chartsBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-png/
SLIDESJAVA-345683D Chart Content is not showing properly in generated PDF fileBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-38682PPTX to PDF table issueBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-335623D Cone Chart value axis format changed in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-38635Shapes with 3D styles improperly rendered in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-38695Exception when converting PPTX to PDF with comments and notesBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-387143D effects on charts are lost in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-38722Loading PPTX file throws PptxReadException: Invalid SvgMsStyleBughttps://docs.aspose.com/slides/java/open-presentation/
SLIDESJAVA-38737High CPU usage and very long PPTX to PDF conversion timeInvestigationhttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-37758White background appearing behind image in generated thumbnailBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-png/

Public API Changes

AutoShape.isTextBox method was added

AutoShape.isTextBox method was added to indicate if the shape was created as a text box or not. The screenshot below demonstrates two scenarios when a shape will be created as a text box and a regular shape:

Text box and shape

This code snippet demonstrates iteration over all Presentation shapes and out to console if the shape is a text box or not (if the shape is AutoShape).

Presentation pres = new Presentation("pres.pptx");
try {
    ForEach.shape(pres, (shape, slide, index) ->
    {
        if (shape instanceof AutoShape)
        {
            AutoShape autoShape = (AutoShape)shape;
            System.out.println(autoShape.isTextBox() ? "shape is text box" : "shape is text not box");
        }
    });
} finally {
    if (pres != null) pres.dispose();
}

Classes inherited from EffectEffectiveData removed from public API

The follwoing classes that inherited from EffectEffectiveData were removed from the public API:

  • AlphaBiLevelEffectiveData
  • AlphaModulateFixedEffectiveData
  • AlphaReplaceEffectiveData
  • BiLevelEffectiveData
  • BlurEffectiveData
  • ColorChangeEffectiveData
  • ColorReplaceEffectiveData
  • DuotoneEffectiveData
  • FillOverlayEffectiveData
  • GlowEffectiveData
  • HSLEffectiveData
  • InnerShadowEffectiveData
  • LuminanceEffectiveData
  • OuterShadowEffectiveData
  • PresetShadowEffectiveData
  • ReflectionEffectiveData
  • SoftEdgeEffectiveData
  • TintEffectiveData

All effective values are still available via corresponding public interfaces, e.g.:

Presentation pres = new Presentation("pres.pptx");
try {
    ForEach.portion(pres, (portion, para, slide, index) ->
    {
        IPortionFormatEffectiveData effective = portion.getPortionFormat().getEffective();
    });
} finally {
    if (pres != null) pres.dispose();
}