Spire.Office 9.10.0 is released
2024-10-31 09:34:56
We are excited to announce the release of Spire.Office 9.10.0. In this version, Spire.PDF supports ignoring images when converting PDF to Markdown; Spire.Doc adds new methods to track the addition, deletion, and modification of document elements; Spire.XLS supports ARRAYTOTEXT, ARABIC, BASE, COMBINA, XOR formulas. Moreover, a lot of known issues are fixed successfully 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, and Spire.Barcode are included. DLL Versions: Spire.Doc.dll v12.10.13 Spire.Pdf.dll v10.10.5 Spire.XLS.dll v14.10.2 Spire.Presentation.dll v9.10.2 Spire.Barcode.dll v7.3.3 Spire.Email.dll v6.6.0 Spire.DocViewer.Forms.dll v8.8.2 Spire.PdfViewer.Asp.dll…
Spire.XLS 14.10.2 supports ARRAYTOTEXT, ARABIC, BASE, COMBINA, XOR formulas
2024-10-31 05:49:33
We're pleased to announce the release of Spire.XLS 14.10.2. This version supports ARRAYTOTEXT, ARABIC, BASE, COMBINA, XOR formulas, and also supports embedding images into cells as well as getting a cell's NamedRange. What’s more, the issues that occurred when converting Excel to PDF, retrieving number of pages, and exporting data has been successfully resolved. More details are shown below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-5350 MarkerDesigner now supports applying filter value parameters. New feature SPIREXLS-5396 ARRAYTOTEXT formula has been supported. Workbook workbook = new Workbook(); workbook.Worksheets[0].Range["A1"].Text = "True"; workbook.Worksheets[0].Range["A2"].Text =…
Spire.Office for Java 9.10.0 is released
2024-10-31 01:00:40
We are excited to announce the release of Spire.Office for Java 9.10.0. In this version, Spire.Doc for Java enhances the conversion from Markdown to Word; Spire.Presentation for Java supports finding the first occurrence of text; Spire.PDF for Java supports converting HTML to PDF using the Chrome plugin; Spire.OCR for Java supports scanning image streams. Moreover, many known bugs are fixed in this update successfully. More details are listed below. Click the link to download Spire.Office for Java 9.10.0: https://www.e-iceblue.com/Download/office-for-java.html Here is a list of changes made in this release Spire.Doc for Java Category ID Description Bug SPIREDOC-10795 Fixes issue that…
Spire.PDF for Java 10.10.7 supports converting HTML to PDF using the Chrome plugin
2024-10-30 08:15:43
We are excited to announce the release of Spire.PDF for Java 10.10.7. This version supports converting HTML to PDF using the Chrome plugin. It also enhances the conversion from PDF to images as well as HTML, SVG, and OFD to PDF. Moreover, a lot of known issues are fixed successfully in this version, such as the issue that setting custom properties for attachments did not take effect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7120 Synchronizes the ToPdfX1A2001() method under the PdfStandardsConverter class to Java. New feature…
Spire.OCR for Java 1.9.19 supports scanning image stream
2024-10-25 03:04:03
We are excited to announce the release of the Spire.OCR for Java 1.9.19. The latest version supports scanning image streams and adds a new module for OCR usage. Besides, some known bugs are successfully fixed in this update, such as the issue that image recognition threw an exception on Ubuntu system. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports a new module for OCR usage. OcrScanner scanner = new OcrScanner(); //ConfigureOptions configureOptions = new ConfigureOptions("D:\\Models\\java\\Java\\win-x64\\","English"); ConfigureOptions configureOptions = new ConfigureOptions(); configureOptions.setLanguage("English"); configureOptions.setModelPath("D:\\Models\\java\\Java\\win-x64\\"); scanner.ConfigureDependencies(configureOptions); scanner.scan(imageFile); String scannedText=scanner.getText().toString();…
Spire.Doc 12.10.13 enhances the conversion from Word to PDF
2024-10-24 07:33:10
We are delighted to announce the release of Spire.Doc 12.10.13. This version enhances the conversion from Word to PDF. Besides, it also fixes the issue that paragraph indentation was lost after replacing paragraph text in bookmarks. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10753 Fixes the issue that paragraph indentation was lost after replacing paragraph text in bookmarks. Bug SPIREDOC-10764 Fixes the issue that the program was hanging when converting Word to PDF. Bug SPIREDOC-10816 Fixes the issue that some parts of the page content were lost after…
Spire.PDF 10.10.5 supports logging output when converting HTML to PDF using Chrome plugin
2024-10-24 03:10:34
We're pleased to announce the release of Spire.PDF 10.10.5. This version supports logging output when converting HTML to PDF using Chrome plugin, as well as creating PdfAttachmentAnnotation and adding an author. Moreover, some know issues that occurred when converting, processing PDF files have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7014 Adds the Logger class that supports logging output when converting HTML to PDF using Chrome plugin. ChromeHtmlConverter converter = new ChromeHtmlConverter(TestUtil.ChromiumPath); converter.Logger = new Logger(logFilePath); //Enable IsEnabled to output logs to the…
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…