Browse our Products

Aspose.Slides for Java 21.8 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-34416Support for monotype fonts in Aspose.Slides during rendering presentationFeaturehttps://docs.aspose.com/slides/net/custom-font/
SLIDESNET-42552Implement ‘OR’ function for spreadsheet formulas of chartsEnhancementhttps://docs.aspose.com/slides/net/chart-worksheet-formulas/#predefined-functions
SLIDESNET-42741Support of Presentation to animated GIF exportFeaturehttps://docs.aspose.com/slides/net/convert-powerpoint-ppt-and-pptx-to-animated-gif/
SLIDESNET-36751Support for PowerPoint like scaling - Ensure Fit & MaximizeFeaturehttps://docs.aspose.com/slides/net/slide-size/
SLIDESNET-42553Using cached values for spreadsheet formulasEnhancementhttps://docs.aspose.com/slides/net/chart-worksheet-formulas/
SLIDESJAVA-34434Slide notes failed to add for PPT presentationBughttps://docs.aspose.com/slides/java/presentation-notes/
SLIDESJAVA-35168KeyNotFoundException on presentation saveBughttps://docs.aspose.com/slides/java/save-presentation/
SLIDESJAVA-36988Table missing in generated thumbnailBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-jpg/
SLIDESJAVA-38552Text is improperly rendered in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-38485Slides conversion of PPT to PDF not workingInvestigationhttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-38240Use Aspose.Slides for Net 21.8 featuresEnhancement
SLIDESJAVA-34950Font gets bigger when pptx exported to thumbnailBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-jpg/
SLIDESJAVA-38555Chart is missing while converting presentation to PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-36423Text missing or improperly rendered in generated SVGBughttps://docs.aspose.com/slides/java/presentation-viewer/
SLIDESJAVA-5092Tabs are not proper when notes are copied.Bughttps://docs.aspose.com/slides/java/merge-presentation/
SLIDESJAVA-33859Shapes rotation effects are missing in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-33858Arcs and arrow lines are missing in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-33857Shapes border color is missing in generated PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-pdf/
SLIDESJAVA-33955Support for monotype fonts in Aspose.Slides during rendering presentationFeaturehttps://docs.aspose.com/slides/java/custom-font/
SLIDESJAVA-34766Support for PowerPoint like scaling - Ensure Fit & MaximizeFeaturehttps://docs.aspose.com/slides/java/slide-size/
SLIDESJAVA-18998Chart rendering support in generated thumbnailsBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-jpg/
SLIDESJAVA-30659Text and Shape improperly rendered in generated thumbnailBughttps://docs.aspose.com/slides/java/convert-powerpoint-ppt-and-pptx-to-jpg/
SLIDESJAVA-36648Exception While inserting EMF in presentationBughttps://docs.aspose.com/slides/java/image/

Public API Changes

Support of Presentation to animated GIF export

Support of Presentation to animated GIF export has been added. Using this new functionality it is now possible to export Presentation into animated GIF with slides changes, including animated transitions:

Presentation presentation = new Presentation("pres.pptx");
try {
	GifOptions gifOptions = new GifOptions();
	gifOptions.setFrameSize(new Dimension(180, 135)); // the size of the resulted GIF
	gifOptions.setDefaultDelay(2500); // how long each slide will be showed until it will be changed to the next one
	gifOptions.setTransitionFps(60); // increase FPS to better transition animation quality

	presentation.save("pres.gif", SaveFormat.Gif, gifOptions);
} finally {
	if (presentation != null) presentation.dispose();
}

Export result:

animated GIF

IChartDataWorkbook.CalculateFormulas and ChartDataWorkbook.CalculateFormulas methods have been added

IChartDataWorkbook.calulateFormulas and ChartDataWorkbook.calulateFormulas methods have been added. These methods provide the functionality of an explicit formulas calculation within the workbook. The calculation performers in two steps:

  • check for unsupported formulas within the entire workbook. If found, the CellUnsupportedDataException will be thrown. Values will not be updated.
  • if the unsupported formulas check was passed, formulas will be calculated for the workbook, and cells values will be updated.

Cell’s formula reset on setting the value (and vice versa) has been removed.