We are glad to announce the release of Spire.Presentation for Java 4.12.3. This version supports converting PowerPoint file to OFD as well as supports getting the image path of the PowerPoint file. In addition, it fixes some known issues such as the content was lost after saving a slide to image. More details are listed below.
Here is a list of changes made in this release
Category | ID | Description |
New feature | SPIREPPT-1778 | Supports getting the image path of the PowerPoint file.
ImageCollection images = ppt.getImages(); for (int i = 0; i < images.size(); i++) { IImageData imageData = images.get(i); String path = imageData.getRelativePath(); } |
New feature | SPIREPPT-1780 | Supports converting PPT file to OFD.
Presentation ppt = new Presentation(); ppt.loadFromFile(inputFile); //Save the PowerPoint to OFD file format ppt.saveToFile(outputFile, FileFormat.OFD); ppt.dispose(); |
Bug | SPIREPPT-1777 | Fixes the issue that the application threw "ArrayIndexOutOfBoundException" when getting Chart data. |
Bug | SPIREPPT-1781 | Fixes the issue that the content was lost after saving a slide to image. |
Click the link to download Spire.Presentation for Java 4.12.3: