Spire.Presentation for Java 8.1.2 supports creating new chart types in PowerPoint2016
2023-01-18 08:00:05
We are excited to announce the release of Spire.Presentation for Java 8.1.2. This version supports the creation of new chart types defined in PowerPoint 2016, namely Waterfall、Treemap、Boxandwhisker、Histogram、Pareto、SunBurst and Funnel charts. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports Waterfall、Treemap、Boxandwhisker、Histogram、Pareto、SunBurst and Funnel charts. Click the link below to download Spire.Presentation for Java 8.1.2: https://www.e-iceblue.com/Download/presentation-for-java.html
Spire.Presentation for Android 8.1.1 supports setting custom fonts
2023-01-06 09:52:28
We are happy to announce the release of Spire.Presentation for Android 8.1.1. This version supports setting custom fonts. Besides, it fixes the issue that the program threw ArrayIndexOutOfBoundsException when converting PowerPoint to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2134 Supports setting custom fonts. Presentation ppt = new Presentation(); ppt.loadFromFile(PptFile); ppt.setCustomFontsFolder(fontFolderPath); ppt.saveToFile(PdfFile, FileFormat.PDF); Bug SPIREPPT-2135 Fixes the issue that the program threw ArrayIndexOutOfBoundsException when converting PowerPoint to PDF. Click the link below to download Spire.Presentation for Android 8.1.1: https://www.e-iceblue.com/Download/presentation-for-android-via-java.html
Spire.Presentation for Java 7.12.4 supports cloning table to new slide
2022-12-30 08:38:19
We are excited to announce the release of Spire.Presentation for Java 7.12.4. This version supports cloning the table to new slide. Besides, it also enhances the conversion from PowerPoint to images. At the same time, some known issues are fixed successfully, such as the issue that the filling color of the text was obtained incorrectly. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2110 Supports cloning table to new slide. Presentation ppt = new Presentation(); ppt.loadFromFile(inputPPT); ITable table = (ITable)ppt.getSlides().get(0).getShapes().get(0); Presentation ppt2 = new Presentation(); ISlide slide =…
Spire.Presentation for Java 7.12.0 enhances the conversion from PowerPoint to SVG
2022-12-02 09:26:48
We are excited to announce the release of Spire.Presentation for Java 7.12.0. This version enhances the conversion from PowerPoint to SVG. Besides, some known issues are fixed successfully, such as the issue that the program threw an error "Index must be >= 0 and <= Count" when loading a PowerPoint file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2085 Fixes the issue that the content format changed when converting PowerPoint to SVG. Bug SPIREPPT-2099 Fixes the issue that the gradient color of the shape line lost when converting…
Spire.Presentation for Java 7.10.1 enhances the conversion from PowerPoint to PDF, SVG, and images
2022-10-21 07:05:12
We are excited to announce the release of Spire.Presentation for Java 7.10.1. This version enhances the conversion from PowerPoint to PDF, SVG, and images. Besides, some known issues are fixed successfully, such as the issue that the application threw "NullPointerException" when loading a PowerPoint file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2057 Fixes the issue that the output PDF file was damaged after converting an encrypted PowerPoint file to PDF. Bug SPIREPPT-2070 Fixes the issue that the shape was changed after converting a PowerPoint file to SVG.…
Spire.Presentation for Java 7.8.2 supports setting the time of advancing slide and determining whether the document is encrypted
2022-08-17 09:55:58
We are excited to announce the release of Spire.Presentation 7.8.2 for Java. This version supports setting the time of advancing slide and determining whether the document is encrypted. Besides, it also enhances the conversion from PowerPoint to HTML and PDF. What’s more, some known issues are successfully fixed, such as the issue that the selection state of “Advance Slide" was incorrect after splitting PowerPoint file. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2014 Supports setting the time of advancing Slide. Note: 03 format is not currently supported.…
Spire.Presentation for Java 7.7.3 supports deleting macros from PPTM files
2022-07-27 02:28:55
We are excited to announce the release of Spire.Presentation 7.8.2 for Java. This version supports setting the time of advancing slide and determining whether the document is encrypted. Besides, it also enhances the conversion from PowerPoint to HTML and PDF. What’s more, some known issues are successfully fixed, such as the issue that the selection state of “Advance Slide" was incorrect after splitting PowerPoint file. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2014 Supports setting the time of advancing Slide. Note: 03 format is not currently supported.…
Spire.Presentation for Java 7.6.3 supports cropping pictures in PowerPoint
2022-06-17 09:19:40
We are excited to announce the release of Spire.Presentation for Java 7.6.3. This version supports cropping pictures in PowerPoint and setting default alternate font for format conversion. Besides, it optimizes the memory consumption of conversion from PowerPoint to images. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1848 Supports setting default alternate font for format conversion. Presentation.setDefaultFontName("Arial"); Presentation ppt = new Presentation(); ppt.loadFromFile(inputFile); ppt.saveToFile(outputFile, FileFormat.PDF); //Used to reset the document conversion default font Presentation.resetDefaultFontName(); New feature SPIREPPT-1962 Supports cropping pictures in PowerPoint. SlidePicture slidePicture= (SlidePicture)presentation.getSlides().get(0).getShapes().get(0); //The crop start…