Spire.PDF 11.11.1 adds support for enabling print logging in NETStandard DLL
2025-11-06 09:54:11
We're pleased to announce the release of Spire.PDF 11.11.1. This version adds support for enabling print logging in the NETStandard DLL. Meanwhile, it removes certain dependencies in NetCore and NetStandard platforms and includes several important bug fixes and optimizations to enhance performance and stability. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment — Removed dependencies on System.Security.Cryptography.Pkcs, System.Security.Permissions, and System.Security.Cryptography.Xml in NetCore and NetStandard platforms. New feature — Added support for enabling print logging in NETStandard DLL. PdfDocument doc = new PdfDocument(); doc.LoadFromFile("in.pdf"); doc.PrintSettings.PrintLogger= new DefaultPrintLogger("log.txt"); doc.PrintSettings.PaperSize =PdfPaperSize.A4; doc.Print();…
Spire.PDF 11.10.4 supports validating the timestamp service URL address
2025-10-23 08:16:18
We're pleased to announce the release of Spire.PDF 11.10.4. This version supports validating the timestamp service URL address, and also successfully fixes some known issues that occurred when converting and comparing PDF files. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7465 Added support for validating the timestamp service URL address. TSAHttpService timestampService = new TSAHttpService("http://time2.certum.pl"); TSAResponse response = timestampService.Check(); //if it is success to receive tsa token if (response.Success) { formatter.TimestampService = timestampService; } Bug SPIREPDF-3890 SPIREPDF-5888 SPIREPDF-6680 Improved the conversion effect from PDF to Word. Bug…
Spire.PDF 11.9.17 improves OFD to PDF conversion
2025-09-30 08:51:54
We’re pleased to announce the release of Spire.PDF 11.9.17. This version includes several important bug fixes, addressing text rendering issues with Hebrew and Arabic scripts, problems with text extraction, OFD-to-PDF conversion, and PDF printing using the .NET Standard DLL. See the full details below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-1134 Fixes the issue where the text order was incorrect when rendering mixed Hebrew and English strings. Bug SPIREPDF-2641 SPIREPDF-4108 Fixes the issue where Arabic text displayed incorrectly in TextBox form fields. Bug SPIREPDF-5073 Fixes the issue where extra characters appeared when…
Spire.PDF 11.9.8 adds SaveAsImage method in NETStandard DLL to customize image DPI when converting PDF to images
2025-09-18 06:21:09
We're pleased to announce the release of Spire.PDF 11.9.8. This version adds the SaveAsImage method in the NETStandard DLL to support customizing image DPI when converting PDF to images, and introduces the Collate property to set the print order for multiple copies. Meanwhile, some issues that occurred in PDF conversion, font embedding, and annotation rendering have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7617 Adds the SaveAsImage(int pageIndex, int dpiX, int dpiY) method in the NETStandard DLL to support customizing image DPI when…
Spire.PDF 11.8.7 supports setting the dimensions of SVG converted from PDF
2025-08-29 05:40:10
We’re pleased to announce the release of Spire.PDF for .NET 11.8.7. This version supports setting the width and height of the SVG files converted from PDFs. Meanwhile, it fixes several bugs related to file format conversion and text replacement. More details are given below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7649 Supports setting the width and height of SVG files when converting PDF to SVG. PdfToSvgConverter converter = new PdfToSvgConverter(inputFile); converter.SvgOptions.ScaleX = (float)0.5; converter.SvgOptions.ScaleY = (float)0.5; converter.Convert(outputFile); Bug SPIREPDF-5710 Fixed an issue where text direction was incorrectly reversed when adding EMF…
Spire.PDF 11.8.0 optimizes the time consumption for converting PDF to PDFA
2025-08-12 09:28:41
We’re pleased to announce the release of Spire.PDF 11.8.0. This version optimizes the time consumption for converting PDF to PDFA. Meanwhile, it fixes several issues related to PDF conversion, text extraction, and table content display. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization SPIREPDF-7471 Optimizes the time consumption for converting PDF to PDFA. Adjustment — Upgrades some dependency versions in .NET Core 2.0 and .NET 6.0. Bug SPIREPDF-7454 Fixes the issue where content discrepancies occurred when converting PDF to TIFF images. Bug SPIREPDF-7515 Fixes the issue where text was…
Spire.PDF 11.7.14 supports XlsxLineLayoutOptions.TextRecognizer to improve the conversion from PDF to Excel
2025-07-25 01:43:10
We're pleased to announce the release of Spire.PDF 11.7.14. The latest version supports XlsxLineLayoutOptions.TextRecognizer to enhance the PDF-to-Excel conversion using OCR libraries. Moreover, some known bugs are fixed in the new version, such as the issue that the content was incorrect when converting XPS to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPDF-7430SPIREPDF-7427 Supports XlsxLineLayoutOptions.TextRecognizer to enhance the PDF-to-Excel conversion using OCR libraries. PdfDocument doc = new PdfDocument(); doc.LoadFromFile("in.pdf"); XlsxLineLayoutOptions options = new XlsxLineLayoutOptions(false, false, false, true); options.TextRecognizer = new TextRecognizer(); doc.ConvertOptions.SetPdfToXlsxOptions(options); doc.SaveToFile("out.xlsx", Spire.Pdf.FileFormat.XLSX); // niget…
Spire.PDF 11.7.10 enhances the conversion from EMF to PDF
2025-07-11 09:21:58
We’re pleased to announce the release of Spire.PDF 11.7.10. This version improves the conversion result from EMF to PDF. More details are listed below. Here is a list of changes made in this release: Category ID Description Bug SPIREPDF-6991 Fixed the issue where Arabic text did not display correctly when converting an EMF file to PDF. Click the link to download Spire.PDF 11.7.10: https://www.e-iceblue.com/Download/download-pdf-for-net-now.html More information of Spire.PDF new release or hotfix: https://www.e-iceblue.com/forum/spire-pdf-new-release-or-hotfix-t4704.html