Spire.PDF for Java 12.2.1 enhances the conversion from PDF to Word
2026-02-10 08:34:18
We’re excited to announce the release of Spire.PDF for Java 12.2.1. This update primarily addresses PDF-to-Word conversion issues. More details are as follows. Here is a list of changes made in this release Category ID Description Bug Fix SPIREPDF-5896 Fixed the issue where image content appeared blurry when converting PDF to Word. Bug Fix SPIREPDF-7700 SPIREPDF-7914 Fixed the issue where incorrect conversion results occurred in PDF to Word. Bug Fix SPIREPDF-7933 Fixed the issue where loading PDF documents resulted in a "file structure is not valid" error. Bug Fix SPIREPDF-7895 SPIREPDF-7905 Optimized the overload method (setBackgroundImage(PdfImage image)) for setting background…
Spire.PDF for Java 12.1.4 supports saving PDF comparison results to file streams
2026-01-23 09:15:05
We're pleased to announce the release of Spire.PDF for Java 12.1.4. This version adds support for saving PDF comparison results directly to file streams. In addition, multiple issues related to PDF conversion, rendering, printing, and stability have been fixed, with further improvements made to performance and layout accuracy. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7880 Added support for saving PDF comparison results to file streams. // Create a new PdfDocument object 'pdf1' to work with the first PDF file PdfDocument pdf1 = new PdfDocument(); // Load…
Spire.PDF for Android via Java 10.7.9 supports converting PDF to Markdown
2025-12-30 09:24:21
We're glad to announce the release of Spire.PDF for Android via Java 10.7.9. This version adds support for converting PDF to Markdown. Details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds support for converting PDF to Markdown. PdfDocument pdf = new PdfDocument(inputFile); pdf.saveToFile(OutputFile, FileFormat.Markdown); PdfDocument pdf = new PdfDocument(); pdf.loadFromFile(inputFile); ByteArrayOutputStream ms = new ByteArrayOutputStream(); pdf.saveToStream(ms, FileFormat.Markdown); FileOutputStream outputStream = new FileOutputStream(new File(OutputFile)); outputStream.write(ms.toByteArray()); outputStream.close(); pdf.dispose(); Click the link below to download Spire.PDF for Android via Java 10.7.9: https://www.e-iceblue.com/Download/pdf-for-android-via-java.html
Spire.PDF for Java 11.12.16 reduces the file size of split PDF documents
2025-12-29 07:14:49
We’re pleased to announce the release of Spire.PDF for Java 11.12.16. This version reduced the file size of spilt PDF documents, and fixed several known bugs related to form fields and OFD to PDF conversion. More details are as follows. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-7837 Fixed an issue where the size of individual PDF files generated after splitting a PDF was larger than that of the original PDF. Bug SPIREPDF-7844 Fixed an issue where the retrieved value of combo boxes was incorrect. Bug SPIREPDF-7857 Fixed an issue where retrieving the…
Spire.PDF for Java 11.11.11 enhances the conversion from PDF to OFD and PDFA
2025-11-26 10:06:50
We are pleased to announce the release of Spire.PDF for Java 11.11.11. This version enhances the conversion from PDF to OFD and PDFA. It also fixes multiple issues related to PDF rendering, conversion, and performance, improving the library's stability and efficiency. Details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-6604 Fixed the issue with incorrect drawing position of PDF footers. Bug SPIREPDF-7005 Fixed the issue with excessive memory usage when loading documents. Bug SPIREPDF-7448 Fixed the issue where converting PDF to PDF/A-2B would throw a "java.lang.StackOverflowError". Bug SPIREPDF-7482 Fixed the…
Spire.PDF for Java 11.10.3 supports setting column width for PdfTable.
2025-10-29 08:45:03
We are excited to announce the release of Spire.PDF for Java 11.10.3. This version introduces a new feature that allows users to set the column width for PdfTable. Details are listed below. Here is a list of changes made in this release Category ID Description New feature - Adds support for setting column width for PdfTable. // Create PDF document PdfDocument doc = new PdfDocument(); // Set margins PdfUnitConvertor unitCvtr = new PdfUnitConvertor(); PdfMargins margin = new PdfMargins(); margin.setTop(unitCvtr.convertUnits(2.54f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point)); margin.setBottom(margin.getTop()); margin.setLeft(unitCvtr.convertUnits(3.17f, PdfGraphicsUnit.Centimeter, PdfGraphicsUnit.Point)); margin.setRight(margin.getLeft()); // Add a page PdfPageBase page = doc.getPages().add(PdfPageSize.A4, margin); // Add table PdfTable table…
Spire.PDF for Java 11.9.6 optimizes memory usage and fixes multiple issues
2025-09-25 06:55:19
We're pleased to announce the release of Spire.PDF for Java 11.9.6. This version optimizes memory consumption when loading documents. Meanwhile, several issues related to PDF conversion, text extraction, Grid cell formatting, and image coordinates have been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization SPIREPDF-7717 Optimizes memory consumption when loading documents. Bug SPIREPDF-7608 Fixes the issue where the program threw a "NullPointerException" when converting PDF to HTML. Bug SPIREPDF-7635 Fixes the issue where the character "-" was missing when extracting text from PDF. Bug SPIREPDF-7639 Fixes the…
Spire.PDF for Java 11.8.3 enhances the conversion from SVG to PDF
2025-08-21 07:48:35
We're pleased to announce the release of Spire.PDF for Java 11.8.3. This version fixes an issue that occurred when converting SVG to PDF, and also reduces the memory consumption during PDF to OFD conversion. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization SPIREPDF-6325 Optimized memory consumption when converting PDF to OFD. Bug SPIREPDF-7445 Fixed the issue that full-width English symbols and letters were garbled when converting SVG to PDF. Click the link below to download Spire.PDF for Java 11.8.3: https://www.e-iceblue.com/Download/pdf-for-java.html