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…
Spire.Doc for Java 12.10.3 enhances the conversion from Markdown to Word
2024-10-18 09:20:10
We are delighted to announce the release of Spire.Doc for Java 12.10.3. This version enhances the conversion from Markdown to Word. Besides, it also fixes the issue that the TOC field was updated incorrectly. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10795 Fixes issue that the TOC field was updated incorrectly. Bug SPIREDOC-10800 Fixes the issue that the Chinese characters were garbled after converting Markdown to Word. Bug SPIREDOC-10801 Fixes the issue that the list numbers were lost after converting Markdown to Word. Click the link below to…
Spire.Doc 12.10.5 adds new methods to track the addition, deletion, and modification of document elements
2024-10-11 08:12:39
We're pleased to announce the release of Spire.Doc 12.10.5. This version adds new methods to track the addition, deletion, and modification of document elements, and also supports modifying the revision author. Furthermore, the issues that occurred when converting Word to PDF/HTML and loading Word files have been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds new methods to track the addition, deletion, and modification of document elements. public void StartTrackRevisions(string author); public void StartTrackRevisions(string author, DateTime dateTime); public void StopTrackRevisions(); New feature SPIREDOC-10831 Supports…
Spire.PDF 10.10.0 supports ignoring images when converting PDF to Markdown
2024-10-10 09:04:24
We are excited to announce the release of Spire.PDF 10.10.0. The latest version supports ignoring images when converting PDF to Markdown. Besides, some known bugs are fixed successfully, such as the issue that opening the resulting document after converting a PDF document to a PDF/A document caused an error. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7003 Supports ignoring images when converting PDF to Markdown. PdfToMarkdownConverter converter = new PdfToMarkdownConverter(inputFile); converter.MarkdownOptions.IgnoreImage = true; converter.ConvertToMarkdown(outputFile); New feature SPIREPDF-7030 Extends the PdfMDPSignatureMaker class to support passing an IPdfSignatureFormatter object.…
