We are excited to announce the release of Spire.Presentation for Java 8.7.3. This version supports selecting multiple slides and converting them into one SVG file. It also enhances the conversion from PowerPoint to images. Moreover, some known issues are fixed in this version, such as the issue that the text layout was messed up after converting PowerPoint to images. More details are listed below.
Here is a list of changes made in this release
Category | ID | Description |
New feature | SPIREPPT-2293 | Supports selecting multiple slides and converting them into one SVG file.
Presentation ppt = new Presentation(); ppt.loadFromFile("input.pptx"); //saveToOneSVG(int startSlide,int endSlide) //startSlide:Start slide index endSlide:End slide index byte[] bytes = ppt.saveToOneSVG(10,13); FileOutputStream fos = new FileOutputStream(new File("result.svg")); fos.write(bytes); fos.flush(); fos.close(); |
Bug | SPIREPPT-2269 | Fixes the issue that the content was cropped after saving a shape to an image. |
Bug | SPIREPPT-2283 | Fixes the issue that the text layout is messed up after converting PowerPoint to images. |
Bug | SPIREPPT-2295 | Fixes the issue that image placeholders could not be obtained after deleting all nodes in PICTURE_ORGANIZATION_CHART and then manually adding images. |
Bug | SPIREPPT-2301 | Fixes the issue that txt attachments cannot be opened after merging PowerPoint files. |
Click the link below to download Spire.Presentation for Java 8.7.3: