Spire.PDF for Java 3.11.6

Spire.PDF for Java 3.11.6 supports converting SVG to PDF

We're pleased to announce the release of Spire.PDF for Java 3.11.6. This version has some fantastic features, such as it supports converting SVG to PDF, PDF to PdfA1A/PdfA1B/PdfA2A/PdfA2B/PdfA3A/PdfA3B, and PDF that has multiple pages to one Excel sheet. Besides, it also fixes some issues that occurred while converting PDF to Word/Image and manipulating PDF files. More details about new features and fixed issues are listed below.

Here is a list of changes made in this release

Category ID Description
New Feature SPIREPDF-3011
SPIREPDF-3243
SPIREPDF-3434
Adjusts converting PDF/A document interface to Spire.Pdf.Conversion, and supports converting to PdfA1A/PdfA1B/PdfA2A/
PdfA2B/PdfA3A/PdfA3B.
PdfStandardsConverter converter = new PdfStandardsConverter(inputPath);
converter.toPdfA1B(OutputPath);
New Feature SPIREPDF-3596 Supports converting SVG to PDF file.
PdfDocument doc1 = new PdfDocument();
doc1.loadFromSvg("svgFile.svg");
doc1.saveToFile("pdfFile.pdf", FileFormat.PDF);
New Feature SPIREPDF-3723 Supports getting the reason and location info of signature.
String location = signatureOne.getLocationInfoLabel();
String reason = signatureOne.getReason(); 
New Feature SPIREPDF-3725 Supports converting PDF that has multiple pages to one Excel sheet.
PdfDocument pdf = new PdfDocument();
pdf.loadFromFile(PDFFile);
pdf.getConvertOptions().setConvertToOneSheet(true);
pdf.saveToFile(ExcelFile,FileFormat.XLSX);
New Feature SPIREPDF-3726 Supports setting lines to determine cells when converting PDF to Excel.
PdfDocument pdf = new PdfDocument();
pdf.loadFromFile(PDFFile);
doc.getConvertOptions().setLinesDetermineCell(true)
pdf.saveToFile(ExcelFile,FileFormat.XLSX); 
Bug SPIREPDF-3659 Fixes the issue that no PDF could be generated when using QT plugin to convert HTML.
Bug SPIREPDF-3722 Fixes the issue that the application threw "java.lang.NullPointerException" when extracting text from PDF pages.
Bug SPIREPDF-3751 Fixes the issue that the application cost long time to convert PDF to image.
Bug SPIREPDF-3761 Fixes the issue that after converting PDF to Word, the text became image format.
Bug SPIREPDF-3763 Fixes the issue that after filling data in textbox field, there was extra border of field in generated PDF while viewing in browser.
Bug SPIREPDF-3772 Fixes the issue that setting the PdfVerticalAlignment.Middle cannot vertically align image in grid cell.
Bug SPIREPDF-3798 Fixes the issue that failed to get the textbox field.
Click the link below to download Spire.PDF for Java 3.11.6: