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
Spire.PDF for Java 11.8.0 enhances SVG and HTML to PDF conversion
2025-08-12 07:15:59
We’re pleased to announce the release of Spire.PDF for Java 11.8.0. This version addresses several issues to improve the stability and correctness of PDF conversion processes, including fixing memory overflow, transparency loss, and output generation problems. More details are listed below. Here is a list of changes made in this release Bug SPIREPDF-7393 Fixes the memory overflow issue caused by circular use of PdfTextReplacer to replace text. Bug SPIREPDF-7535 Fixes the issue of lost transparency when converting SVG to PDF. Bug SPIREPDF-7613 Fixes the issue where the output document could not be generated when converting HTML to PDF. Click the…
Spire.PDF for Android via Java 10.6.8 supports extracting text from PDF
2025-07-30 09:38:24
We’re excited to announce the release of Spire.PDF for Android via Java 10.6.8. This update supports extracting text from PDFs, finding and highlighting text, and finding and replacing text. Additionally, an issue related to PDF encryption has been fixed. More details are provided below. Here is a list of changes made in this release: Category ID Description Adjustment - Adjusted the license applying method to “com.spire.pdf.license.LicenseProvider.setLicenseKey("");”. New feature - Added support for 'text extraction' functionality using the 'PdfTextExtractor' class. for (PdfPageBase page : (Iterable<PdfPageBase>) doc.getPages()) { PdfTextExtractor textExtractor = new PdfTextExtractor(page); PdfTextExtractOptions option = new PdfTextExtractOptions(); buffer.append(textExtractor.extract(option)); } New feature…
Spire.PDF for Java 11.7.5 supports converting PDF to Markdown
2025-07-18 09:12:35
We’re glad the announce the release of Spire.PDF for Java 11.7.5. This version introduces support for converting PDFs to Markdown and resolves several known issues, including garbled text during PDF-to-image conversions and content rotation problems when converting OFD to PDF. For more details, please see the information below. Here is a list of changes made in this release: Category ID Description New feature SPIREPDF-5995 Added support for converting PDF files to Markdown format. PdfDocument doc = new PdfDocument("input.pdf"); doc.saveToFile("output.md", FileFormat.Markdown); Adjustment SPIREPDF-7597 Internal adjustments were made to references of "sun.misc.BASE64Decoder". Bug SPIREPDF-7405 Fixed the issue where text became garbled when…
Spire.PDF for Java 11.7.0 enhances the conversion from SVG to PDF
2025-07-09 07:05:39
We’re pleased to announce the release of Spire.PDF for Java 11.7.0. This version enhances the conversion result from SVG to PDF and resolves two additional issues. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-7513 Fixed the issue where text search was failing. Bug SPIREPDF-7532 Fixed the issue where the printed PDF content was scaled down when the system DPI was set to 150%. Bug SPIREPDF-7548 Fixed the issue where SVG-to-PDF conversion produced incorrect results. Click the link below to download Spire.PDF for Java 11.7.0: https://www.e-iceblue.com/Download/pdf-for-java.html
Spire.PDF for Java 11.6.2 enhances the conversion form PDF to PDFA3B and PDFA1A
2025-06-19 01:49:02
We are delighted to announce the release of Spire.PDF for Java 11.6.2. This version enhances the conversion from PDF to PDFA3B and PDFA1A as well as OFD to PDF. Besides, some known issues are fixed successfully in this version, such as the issue that the font was incorrect when replacing text. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-7485 Fixed the issue that spaces were lost after converting PDF to PDFA3B. Bug SPIREPDF-7497 Fixed the issue that signatures were lost after converting PDF to PDFA1A. Bug SPIREPDF-7506 Fixed…