Spire.PDF 9.8.5 fixed the issue that finding cross-line text in PDF failed
2023-08-10 09:49:05
We are pleased to announce the release of Spire.PDF 9.8.5. This version fixed the issue that finding cross-line text in a PDF file failed. What’s more, some other known issues are also fixed in this version, such as the issue that the application threw a "System.NullReferenceException" exception when adding attachments to a PDF file. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-1752 Fixed the issue that opening the result file in Adobe failed after creating an overlay. Bug SPIREPDF-5146 Fixed the issue that the watermark was changed after…
Spire.PDF 9.7.17 supports PDF documents text comparison function
2023-07-27 02:47:33
We are pleased to announce the release of Spire.PDF 9.7.17. This version supports PDF documents text comparison function. What’s more, some known issues are fixed in this version, such as the issue that it consumed excessive resource when converting PDF to OFD. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports PDF documents text comparison function. PdfDocument pdf1 = new PdfDocument(inputFile_1); PdfDocument pdf2 = new PdfDocument(inputFile_2); PdfComparer compare = new PdfComparer(pdf1, pdf2); compare.Options.SetPageRanges(0, pdf1.Pages.Count - 1, 0, pdf2.Pages.Count - 1); compare.Compare(outputFile); Bug SPIREPDF-6113 Fixed the issue that…
Spire.PDF 9.7.14 supports retaining the same font name when converting PDF to Word
2023-07-20 09:57:08
We are excited to announce the release of Spire.PDF 9.7.14. This version supports retaining the same font name when converting PDF to Word and setting encryption options with the new interface when encrypting PDF documents. It also enhances the conversion from PDF to images. In addition, some known issues are fixed in this version, such as the issue that the table borders were thicker after printing PDF files. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-3578 Supports retaining the same font name when converting PDF to Word.…
Spire.PDF 9.7.0 supports creating labeled PDF files containing structured tables
2023-07-03 09:53:55
We are happy to announce the release of Spire.PDF 9.7.0. This version adds the supports for zoom level in fitting height and creating labeled PDF files containing structured tables. It also enhances the conversion from PDF to PDF/A3A and PDF/A1B. What’s more, some known issues are fixed in this version, such as the issue that the stamp rotated out of shape when printing PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5964 Supports creating labeled PDF files containing structured tables. PdfDocument doc = new PdfDocument(); PdfPageBase page…
Spire.PDF 9.6.0 supports converting multi-page PDFs to single SVG files
2023-06-05 02:10:10
We are excited to announce the release of Spire.PDF 9.6.0. This version supports converting multi-page PDF documents to single SVG files. It also enhances the conversion from PDF to Word, Excel, as well as PowerPoint and OFD to PDF. Besides, some known issues are fixed in this version, such as the issue that it failed to find text. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5977 Supports converting multi-page PDF documents to single SVG files. // load file PdfDocument pdfDocument = new PdfDocument(); pdfDocument.LoadFromFile("input.pdf"); // convert multi-page…
Spire.PDF 9.5.4 optimizes the function of compressing PDF documents
2023-05-23 06:00:17
We are happy to announce the release of Spire.PDF 9.5.4. This version optimizes the function of compressing PDF documents. It also enhances the conversion from PDF to Word, OFD, and images. In addition, a lot of known issues are fixed in this version, such as the issue that it failed to highlight text. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5840 Optimizes the function of compressing PDF documents. PdfCompressor compressor = new PdfCompressor("input.pdf"); compressor.Options.TextCompressionOptions.UnembedFonts = true; compressor.Options.ImageCompressionOptions.CompressImage = true; compressor.Options.ImageCompressionOptions.ResizeImages = true; compressor.Options.ImageCompressionOptions.ImageQuality = ImageQuality.Low; compressor.CompressToFile("output.pdf"); Bug…
Spire.PDF 9.4.12 improves the speed of printing PDF
2023-04-28 03:05:34
We are excited to announce the release of Spire.PDF 9.4.12. This version improves the speed of printing PDF and converting PDF to images. Besides, it also enhances the conversion from PDF to Word, SVG, and images. In addition, many known issues are Fixes in this version, such as the issue that the PDF document became lager after compressing images in the document. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-1096 SPIREPDF-2427 SPIREPDF-2994 SPIREPDF-3836 Improves the speed of printing PDF. New feature SPIREPDF-2287 SPIREPDF-4084 Improves the speed of…
Spire.PDF 9.4.0 supports automatic font size setting for textbox form fields
2023-04-06 09:38:45
We are excited to announce the release of Spire.PDF 9.4.0. This version supports automatic font size setting for textbox form fields. Besides, it enhances the conversion from OFD to PDF and PDF to images. What’s more, many issues are fixed in this version, such as the issue that the content overlapped after replacing text. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-5747 Supports automatic font size setting for textbox form fields. PdfDocument pdf = new PdfDocument(); pdf.LoadFromFile(input); PdfFormWidget formWidget = pdf.Form as PdfFormWidget; foreach(PdfField field in formWidget.FieldsWidget.List)…