Spire.Presentation for Java 8.5.2 enhances the conversion from PowerPoint to images
2023-05-25 07:04:05
We are happy to announce the release of Spire.Presentation for Java 8.5.2. This version enhances the conversion from PowerPoint to images. Moreover, some known issues are fixed in this release, such as the issue that getting the glow color of text failed. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-2237 Fixes the issue that getting the glow color of text failed. Bug SPIREPPT-2239 Fixes the issue that the program threw an exception java.lang.NullPointerException when setting pictures using SmartArtLayoutType: PICTURE_ORGANIZATION_CHART. Bug SPIREPPT-2241 Fixes the issue that the font size…
Spire.Doc for Java 11.5.5 enhances the conversion form Word to PDF
2023-05-25 06:52:38
We are pleased to announce the release of Spire.Doc for Java 11.5.5. This version enhances the conversion from Word to PDF and Word to OFD. In addition, it fixes some known issues, such as the issue that the application threw an error "Attempted to read past the end of the stream" when loading documents. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-7626 Fixes the issue that the content was incorrect after converting Word to OFD. Bug SPIREDOC-8666 Fixes the issue that the paging was inconsistent after converting DOC to DOCX.…
Spire.Office 8.5.3 is released
2023-05-25 06:02:43
We are excited to announce the release of Spire.Office 8.5.3. In this version, Spire.Doc supports adding charts; Spire.XLS supports ISO.CEILING, WORKDAY.INTL, and EVALUATE functions; Spire.PDF optimizes the function of compressing PDF documents. Besides, a lot of known issues are successfully fixed in this version. More details are listed below. In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Email, Spire.DocViewer, Spire.PDFViewer, Spire.Spreadsheet, Spire.OfficeViewer, Spire.DataExport, Spire.Barcode are included. DLL Versions: Spire.Doc.dll v11.5.6 Spire.Pdf.dll v9.5.4 Spire.XLS.dll v13.5.1 Spire.Presentation.dll v8.4.1 Spire.Email.dll v6.5.7 Spire.DocViewer.Forms.dll v8.5.1 Spire.PdfViewer.Forms.dll v8.5.0 Spire.PdfViewer.Asp.dll v8.5.0 Spire.Spreadsheet.dll v7.4.2 Spire.OfficeViewer.Forms.dll v8.5.3 Spire.Barcode.dll v7.2.1 Spire.DataExport.dll v4.8.0 Spire.DataExport.ResourceMgr.dll v2.1.0 Click the…
Spire.PDF for Java 9.5.6 enhances the conversion from OFD to PDF
2023-05-23 08:09:06
We are pleased to announce the release of Spire.PDF for Java 9.5.6. This version enhances the conversion from OFD to PDF. Moreover, some known issues are fixed, such as the issue that the text was truncated when filling cells. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-5976 Fixes the issue that the text was truncated when filling cells. Bug SPIREPDF-5984 Fixes the issue that the application threw "NullPointerException" when converting OFD to PDF. Click the link below to download Spire.PDF for Java 9.5.6: https://www.e-iceblue.com/Download/pdf-for-java.html
Spire.PDF 9.5.4 optimizes the function of compressing PDF documents
2023-05-23 06:00:17
We are happy to announce the release of Spire.PDF 9.5.4. This version optimizes the function of compressing PDF documents. It also enhances the conversion from PDF to Word, OFD, and images. In addition, a lot of known issues are fixed in this version, such as the issue that it failed to highlight text. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5840 Optimizes the function of compressing PDF documents. PdfCompressor compressor = new PdfCompressor("input.pdf"); compressor.Options.TextCompressionOptions.UnembedFonts = true; compressor.Options.ImageCompressionOptions.CompressImage = true; compressor.Options.ImageCompressionOptions.ResizeImages = true; compressor.Options.ImageCompressionOptions.ImageQuality = ImageQuality.Low; compressor.CompressToFile("output.pdf"); Bug…
Spire.Email 6.5.7 fixes the issue that it was failed to connect to the server
2023-05-22 07:41:44
We are pleased to announce the release of Spire.Email 6.5.7. This version fixes the issue that it was failed to connect to Imap server and Pop3 server when used in the NetFramework application. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREEMAIL-76 Fixes the issue that it was failed to connect to Imap server and Pop3 server when used in the NetFramework application. Click the link to download Spire.Email 6.5.7: https://www.e-iceblue.com/Download/email-for-net.html
Spire.PDF for Android via Java fixes the issue that adding new custom properties would cause loss of existing custom properties
2023-05-16 09:52:42
We are happy to announce the release of Spire.PDF for Android via Java 9.5.1. This version fixes the issue that adding new custom properties would cause loss of existing custom properties. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-5639 Fixes the issue that adding new custom properties would cause loss of existing custom properties. Click the link below to download Spire.PDF for Android via Java 9.5.1: https://www.e-iceblue.com/Download/pdf-for-android-via-java.html
Spire.Doc 11.5.6 supports adding charts
2023-05-16 02:01:25
We are excited to announce the release of Spire.Doc 11.5.6. This version supports adding charts and supports adding SVG documents. What’s more, it also supports printing multiple pages onto one page and manipulating pages, such as retrieving page content and its coordinates. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports adding charts. //Create word document Document document = new Document(); //Create a new section Section section = document.AddSection(); //Create a new paragraph and append text section.AddParagraph().AppendText("Column chart."); //Create a new section to append column chart Paragraph…