Spire.Presentation for Java 10.1.2 enhances the conversion from slides to images
2025-01-13 03:30:23
We are delighted to announce the release of Spire.Presentation for Java 10.1.2. This version enhances the conversion from slides to images. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2700 Fixes the issue that the shapes were incorrect when converting slides to images. Click the link below to download Spire.Presentation for Java 10.1.2: https://www.e-iceblue.com/Download/presentation-for-java.html
Spire.Presentation for Java 9.12.3 enhances the conversion from PowerPoint to image
2024-12-11 08:46:54
We are pleased to announce the release of Spire.Presentation for Java 9.12.3. This version fixes an issue that the Chinese characters in the OLE object were garbled when converting PowerPoint to image. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2681 Fixes the issue that the Chinese characters in the OLE object were garbled when converting PowerPoint to image Click the link below to download Spire.Presentation for Java 9.12.3: https://www.e-iceblue.com/Download/presentation-for-java.html
Spire.Presentation for Java 9.11.3 optimizes the conversion from PowerPoint to images
2024-11-25 05:49:47
We are pleased to announce the release of Spire.Presentation for Java 9.11.3. The latest version optimizes the clarity when converting PowerPoint to images. Besides, some known bugs are fixed successfully, such as the issue that the program threw a "ClassCastException" error when using ISmartArtNode. getTextFrame(). getTextPosition(). More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2596 Optimizes the clarity when converting PowerPoint to image. Bug SPIREPPT-2624 Fixes the issue that the program threw a "ClassCastException" error when using ISmartArtNode. getTextFrame(). getTextPosition(). Bug SPIREPPT-2637 SPIREPPT-2650 SPIREPPT-2651 Fixes the issue that incorrect…
Spire.Presentation for Java 9.10.2 supports the FindFirstTextAsRange method
2024-10-23 08:56:38
We are happy to announce the release of Spire.Presentation for Java 9.10.2. The latest version supports the FindFirstTextAsRange method for finding the first occurrence of text. Moreover, some known bugs are fixed successfully in the update, such as the issue that the program threw the NullPointerException exception when loading PPTX documents. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2573 Supports the FindFirstTextAsRange method for finding the first occurrence of text. Presentation ppt = new Presentation(); ppt.loadFromFile(inputFile); String text = "create, read"; PortionEx textRange=ppt.getSlides().get(0).FindFirstTextAsRange(text); textRange.getFill().setFillType(FillFormatType.SOLID); textRange.getFill().getSolidColor().setColor(Color.red); textRange.setFontHeight(28); textRange.setLatinFont(new…
Spire.Presentation for Java 9.9.2 supports getting the names of all embedded fonts in a PowerPoint file
2024-09-23 09:35:56
We are delighted to announce the release of Spire.Presentation for Java 9.9.2. This version supports getting the names of all embedded fonts in a PowerPoint file. It also enhances the conversion from PPTX files to PPT files. Moreover, some known issues are fixed in this version, such as the issue that the program suspended when loading a PPTX document. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2602 Supports getting the names of all embedded fonts in a PowerPoint file. ArrayList<String> embedFonts = ppt.getEmbedFonts(); Bug SPIREPPT-2597 Fixes the…
Spire.Presentation for Java 9.8.3 support setting format when replacing text
2024-08-30 07:21:49
We are pleased to announce the release of Spire.Presentation for Java 9.8.3. This version provides a new method to set format when replacing text, and also fixes some known issues occurred when loading PowerPoint files, adding formulas in table cells, and adding LatexMath. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2579 Provides the ReplaceAndFormatText(String matchedString, String newValue, PortionFormatEx format) method to support setting format when replacing text. Presentation ppt = new Presentation(); // Load a PowerPoint presentation from the specified file. ppt.loadFromFile(inputFile); // Create a new object…
Spire.Presentation for Java 9.7.6 supports adding comments to specified text in PowerPoint
2024-07-31 02:12:28
We are pleased to announce the release of Spire.Presentation for Java 9.7.6. This version supports adding comments to specified text in PowerPoint, and also fixes some known issues, such as the incorrect shape height after adding content to the shape. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-2559 Supports adding comments to specified text in PowerPoint. Presentation ppt = new Presentation(); ISlide slide = ppt.getSlides().get(0); IAutoShape shape = ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle2D.Double(100, 250, 350, 200)); ppt.getSlides().get(0).getShapes().get(0).getLine().getFillFormat().getSolidFillColor().setColor(Color.white); shape.getFill().setFillType(FillFormatType.SOLID); shape.getFill().getSolidColor().setColor(Color.GRAY); ParagraphEx paragraphEx = shape.getTextFrame().getTextRange().getParagraph(); PortionEx ex = new PortionEx("TextTextmdTextText\ttmdTextTextmdText\ttmdTextTextmdtEXT\ttTextmd"); paragraphEx.getTextRanges().append(ex);…
Spire.Presentation for Java 9.7.4 enhances the conversion from PowerPoint to images
2024-07-17 06:13:15
We are pleased to announce the release of Spire.Presentation for Java 9.7.4. This version mainly fixes some known issues that occurred when converting PPTX to images, loading and saving PowerPoint documents. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2513 Fixes the issue that the TextBox margin values obtained were incorrect. Bug SPIREPPT-2536 Fixes the issue that there was a "repair" prompt when opening a saved PowerPoint file. Bug SPIREPPT-2538 Fixes the issue of incorrect behavior when setting IAudio.isPlayInBackground(true). Bug SPIREPPT-2546 Fixes the issue that the application threw an…