Spire.Doc 13.9.3 supports adding PDF digital signatures and timestamps for Word to PDF conversion
2025-09-11 03:06:13
We're pleased to announce the release of Spire.Doc 13.9.3. This version introduces public classes that enable adding digital signatures and timestamps when saving PDF documents. It also exposes bookmark column properties, adds search options for OfficeMath handling during text replacement, and supports setting page layout when converting to PDF. In addition, several issues related to Word-to-PDF conversion, document loading, and page counting have been fixed. See the full details below. Here is a list of changes made in this release Category ID Description New Feature - Adds public classes PdfDigitalSignatureHashAlgorithm, PdfDigitalSignatureInfo, and PdfDigitalSignatureTimestampConfiguration to enable adding digital signatures and timestamps…
Spire.Doc 13.8.1 supports comparing whether two list levels are consistent
2025-08-08 06:04:11
We're pleased to announce the release of Spire.Doc 13.8.1. This version supports comparing whether two list levels are consistent and setting or deleting the picture bullet. Besides, it has also made some adjustments to the properties and methods related to the lists in Word. More details are listed below. Here is a list of changes made in this release New Feature - Added 'ListLevel.Equals' to compare whether two ListLevels are consistent. // Create a new Document object. Document document = new Document(); //Create list style 1 ListStyle listStyle_1 = document.Styles.Add(ListType.Bulleted, "bulletList"); ListLevelCollection Levels_1 = listStyle_1.ListRef.Levels; ListLevel L0 = Levels_1[0]; ListLevel…
Spire.Doc 13.7.14 supports converting Word to PDF/UA-1
2025-07-25 04:01:13
We're pleased to announce the release of Spire.Doc 13.7.14. This version adds several new features, such as support for loading EPUB files and converting Word to PDF/UA-1 format. More details are listed below. Category ID Description New feature SPIREDOC-3144 Supports loading EPUB files for processing. Document doc = new Document(); doc.LoadFromFile("in.epub", Spire.Doc.FileFormat.EPub); doc.SaveToFile(@"out.docx", Spire.Doc.FileFormat.Docx); doc.SaveToFile(@"out.pdf", Spire.Doc.FileFormat.PDF); New feature SPIREDOC-11179 Supports converting Word to PDF/UA-1 format Document doc = new Document(); doc.LoadFromFile("in.docx"); ToPdfParameterList list = new ToPdfParameterList(); list.PdfConformanceLevel = PdfConformanceLevel.Pdf_UA1; doc.SaveToFile(@"out.pdf", list); New feature SPIREDOC-11345 Adds new configuration parameters to enhance the performance and output quality of Word-to-Markdown conversion. Click the…
Spire.Doc 13.7.9 support creating combination charts
2025-07-18 06:20:49
We're pleased to announce the release of Spire.Doc 13.7.9. This version adds several new features, such as support for creating combination charts and setting image compression methods when converting Word to PDF. Besides, it also fixes an issue that header images were distorted during Doc to PDF conversion. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9977SPIREDOC-10012 Supports creating combination charts. Document doc = new Document(); Paragraph paragraph = doc.AddSection().AddParagraph(); Chart chart = paragraph.AppendChart(ChartType.Column, 450, 300).Chart; //Modify 'Series 3' to a line chart and display it on the…
Spire.Doc 13.6.14 supports setting rounded corners on rectangle shapes
2025-06-30 09:39:20
We're pleased to announce the release of Spire.Doc 13.6.14. This version adds support for setting rounded corners on rectangle shapes, and retrieving move revisions. What’s more, it also fixes several known issues, such as the paragraph text content retrieved was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11102 Supports setting rounded corners on rectangle shapes. if (Cobj is ShapeObject) { ShapeObject shape = (ShapeObject)Cobj; if (shape.ShapeType == ShapeType.RoundRectangle) { double cornerRadius = shape.AdjustHandles.GetRoundRectangleCornerRadius(); shape.AdjustHandles.AdjustRoundRectangle(20); } } New feature SPIREDOC-11335 Supports retrieving move revisions. DifferRevisions differRevisions =…
Spire.Doc 13.5.11 enhances the conversion from Word to PDF
2025-05-29 06:25:47
We are delighted to announce the release of Spire.Doc 13.5.11. The latest version enhances the conversion from Word to PDF. Furthermore, some known bugs are fixed in the new version, such as the issue that the values of content controls couldn't be modified. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10418 SPIREDOC-10762 Fixes the issue where inconsistent pagination occurred when converting Word to PDF. Bug SPIREDOC-11177 Fixes the issue that font embedding was incorrect when converting Word to PDF. Bug SPIREDOC-11220 Fixes the issue where the "Allow row…
Spire.Doc 13.4.4 enhances the conversion from Word to PDF
2025-04-23 04:03:53
We are delighted to announce the release of Spire.Doc 13.4.4. This version enhances the conversion from Word to PDF. Besides, a lot of known issues are fixed successfully in this version, such as the issue that Fixed the issue that TextBox could not be obtained after using Document.Clone(). More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10815 Fixes the issue that TextBox could not be obtained after using Document.Clone(). Bug SPIREDOC-10865 Fixes the issue that the program threw “System.ArgumentException” when comparing Word documents. Bug SPIREDOC-10985 Fixes the issue that…
Spire.Doc 13.3.7 enhances the conversion from MarkDown to Word
2025-03-19 01:56:42
We're pleased to announce the release of Spire.Doc 13.3.7. This version adds support for .NET 9.0 Framework, and also enhances the conversions from MarkDown to Word, Word to PDF/HTML stream. Moreover, it also fixes several known issues, such as the program threw an exception when loading Word documents. More details are listed below. Here is a list of changes made in this release Category ID Description Adjustment - Adds DLL for .NET 9.0 Framework and removes DLL for .NET 7.0 Framework. System.Drawing.Common >= 9.0.0 System.Security.Permissions >= 9.0.0 System.Text.Encoding.CodePages >= 9.0.0 System.Security.Cryptography.Pkcs >= 9.0.0 System.Security.Cryptography.Xml >= 9.0.0 HarfBuzzSharp >=8.3.0.1 Bug SPIREDOC-10409…