Spire.PDF for Java 4.9.5 supports setting padding for grid cells
2021-09-29 02:07:00
Spire.PDF for Java 4.9.5 is released. This version supports setting padding for grid cells, enhances the conversions from PDF to Word/HTML/PDFA1A and also fixes the issue occurred in the process of loading PDF files. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-4568 Supports setting padding for grid cells. PdfGridCell pdfGridCell = grid.getRows().get(1).getCells().get(0); pdfGridCell.getStyle().setCellPadding(new PdfPaddings(10,10,10,10)); Bug SPIREPDF-3855 Fixes the issue that the content was missing after converting PDF to Word. Bug SPIREPDF-4548 Fixes the issue that the stamp was missing after converting PDF to HTML. Bug SPIREPDF-4554 Fixes…
Spire.PDF 7.10.0 enhances the conversion from PDF to images
2021-10-09 02:06:00
We are happy to announce the release of Spire.PDF 7.10.0. This version enhances the conversion from PDF to images and also fixes the issue occurred in the process of printing PDF files. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-1113 Fixes the issue that the content was not clear after converting PDF to images. Bug SPIREPDF-3741 Fixes the issue that the margins of the printout were incorrect. Bug SPIREPDF-4059 Fixes the issue that the content of the printout was cut off. Bug SPIREPDF-4541 Fixes the issue that the…
Spire.PDF 7.10.4 supports setting document properties when converting PDF to Doc/Docx
2021-10-18 02:03:00
We are glad to announce the release of Spire.PDF 7.10.4. This version brings some new features. For instance, it supports setting document properties when converting PDF to Doc/Docx, supports creating poly line annotations and extracting table. In addition, it also enhances the conversion from PDF to SVG and fixes issues occurred that the content was incorrect when adding SVG to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-4564 Supports setting document properties when converting PDF to Doc/Docx. Spire.Pdf.Conversion.PdfToDocConverter doc = new Spire.Pdf.Conversion.PdfToDocConverter(inputFile); doc.DocxOptions.Title = "PDFTODOCX"; doc.DocxOptions.Subject…
Spire.PDF for Java 4.10.2 supports extracting tables from PDF files
2021-10-20 01:56:00
We are happy to announce the release of Spire.PDF for Java 4.10.2. This version supports extracting tables from PDF files, as well as enhances the conversions from PDF to Excel/PDFA2A. In addition, it also fixes the issue occurred in the course of deleting the value of the "keyword" property. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports extracting tables from PDF files. PdfDocument pdf = new PdfDocument(); pdf.loadFromFile(inputFile); StringBuilder builder = new StringBuilder(); //Extract the table PdfTableExtractor extractor = new PdfTableExtractor(pdf); PdfTable[] tableLists = null; for…