sautinsoft.document 2023.9.10
.NET SDK to Process & Manipulate Word, PDF documents.
Document .Net is .NET assembly (SDK) which gives API to Create, Read, Write, Edit, View, Convert, Merge, Sign Digitally, Find and Replace, Do Reporting with PDF, DOC, DOCX, HTML, RTF and Text documents, Rasterize to Image.
Quick links
===============================
Top Features
===============================
- Create a document in PDF, DOCX, RTF, HTML formats.
- Load a document in PDF, DOCX, RTF, HTML formats.
- Save a document as PDF, DOCX, RTF, HTML Flowing and Fixed, Text.
- Convert and Merge documents.
- Protect and encrypt documents.
- Digitally sign documents.
- Make PDF/A compliance.
- Perform Mail Merge process.
- Obvious Document Object Model.
- Rasterize a document or specific pages to Image.
- Get and set a Header / Footer, Page Setup.
- Add Page Numbering, Text Columns.
- Perform Pagination and get document pages.
- Find and Replace content.
- Manipulate with Tables, Paragraphs and Text.
- Add and Extract Pictures.
- Work with Shapes, Shape groups and Geometry.
- Get and set Formatting and Styles.
- Work with ordered and unordered Lists.
- Insert and Update TOC - table of contents.
- Work with Forms and Fields.
- Change Document Properties: Author, Title, Creator, etc.
System Requirement
===============================
- .NET Framework 4.6.1 - 4.8.1
- .NET Core 2.0 - 3.1, .NET 5, 6, 7, 8
- .NET Standard 2.0
- Windows, Linux, macOS, Android, iOS.
Getting Started with Document .Net
===============================
Are you ready to give Document .NET a try? Simply execute Install-Package sautinsoft.document from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Document .NET and want to upgrade the version, please execute Update-Package sautinsoft.document to get the latest version.
Convert DOCX to PDF
string inpFile = @"..\..\example.docx";
string outFile = @"Result.pdf";
DocumentCore dc = DocumentCore.Load(inpFile);
dc.Save(outFile);
Create DOCX document on the fly
Set a path to our document.
string docPath = @"Result-DocumentBuilder.docx";
// Create a new document and DocumentBuilder.
DocumentCore dc = new DocumentCore();
DocumentBuilder db = new DocumentBuilder(dc);
// Set page size A4.
Section section = db.Document.Sections[0];
section.PageSetup.PaperType = PaperType.A4;
// Add 1st paragraph with formatted text.
db.CharacterFormat.FontName = "Verdana";
db.CharacterFormat.Size = 16;
db.CharacterFormat.FontColor = Color.Orange;
db.Write("This is a first line in 1st paragraph!");
// Save the document to the file in DOCX format.
dc.Save(docPath, new DocxSaveOptions()
Resources
===============================
No packages depend on sautinsoft.document.
We are very excited to announce the official release of our new Document .Net 2023.9! We've prepared many fixes and improvements. Let's see what's new:
- DocumentCore: MailMerge - fixed bug with erroneous definition of CharacterFormat (font, size, color).
- HTML Writer: Fixed an issue with closing tag. Previously, there were situations when
- ... did not always work correctly. Added processing of special characters &fraq12; and others for European languages.
- RTF Writer: The border design of the table was broken during conversion. Fixed. Fixed "h.PageStyle.PageHeader.MarginBottom" not working correctly.
- RTF Reader: The bug with reading the list marker has been fixed.
- DOCX Writer: Added a new property h.TableAutoFit = true, when it is enabled, the widths of the columns in the table change depending on the amount of text in them. (the more text, the larger the column). Default: disabled. There was a problem with the layout style after converting. Partially corrected.
- PDF Writer: Some letters and punctuation marks are missing after conversion. We made changes and improved our algorithm. Fixed an issue with text alignment when converting DOCX to PDF. Sometimes the text stretched over several pages. Made an optimization.
- .NET 8.0 support: Starting from the version 2023.9 appeared the SautinSoft.Document.dll assemblies compiled for a unified platform .NET 8.0.
- Fixed the minor issues, found and sent to us from our customers. Therefore the component became more error-free.
.NET 8.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET 7.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET 6.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET 5.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Core 2.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Core 2.1
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Core 2.2
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Core 3.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Core 3.1
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Standard 2.0
- Microsoft.IO.RecyclableMemoryStream (>= 2.3.2)
- System.Configuration.ConfigurationManager (>= 4.7.0)
- System.Drawing.Common (>= 4.7.3)
- System.IO.Packaging (>= 4.4.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
- System.Xml.XPath.XmlDocument (>= 4.3.0)
.NET Framework 4.6.1
- No dependencies.
.NET Framework 4.6.2
- No dependencies.
.NET Framework 4.7
- No dependencies.
.NET Framework 4.7.2
- No dependencies.
.NET Framework 4.8
- No dependencies.
.NET Framework 4.8.1
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 2026.2.19 | 0 | 02/20/2026 |
| 2026.2.3 | 0 | 02/04/2026 |
| 2026.1.20 | 0 | 01/20/2026 |
| 2025.11.10 | 0 | 11/10/2025 |
| 2025.10.22 | 0 | 10/22/2025 |
| 2025.10.7 | 0 | 10/07/2025 |
| 2025.9.24 | 0 | 09/24/2025 |
| 2025.9.8 | 0 | 09/08/2025 |
| 2025.8.25 | 0 | 08/25/2025 |
| 2025.8.12 | 0 | 08/12/2025 |
| 2025.7.29 | 0 | 07/29/2025 |
| 2025.6.20-hotfix | 0 | 06/20/2025 |
| 2025.6.10 | 0 | 06/10/2025 |
| 2025.5.26-hotfix | 0 | 05/26/2025 |
| 2025.5.21 | 0 | 05/21/2025 |
| 2025.5.6 | 0 | 05/06/2025 |
| 2025.4.25 | 0 | 04/25/2025 |
| 2025.2.13 | 0 | 02/13/2025 |
| 2025.1.16 | 0 | 01/16/2025 |
| 2024.12.16 | 0 | 12/17/2024 |
| 2024.11.20 | 0 | 11/20/2024 |
| 2024.10.25 | 0 | 10/25/2024 |
| 2024.9.7-beta | 0 | 09/09/2024 |
| 2024.7.19 | 0 | 07/19/2024 |
| 2024.4.24 | 0 | 04/24/2024 |
| 2024.4.10 | 0 | 04/10/2024 |
| 2024.3.3 | 0 | 03/04/2024 |
| 2024.1.9 | 0 | 01/09/2024 |
| 2023.9.10 | 5 | 03/16/2026 |
| 2023.4.19 | 0 | 04/19/2023 |
| 5.8.1.26 | 0 | 01/26/2023 |
| 5.7.11.28 | 0 | 11/28/2022 |
| 5.6.8.16 | 0 | 08/16/2022 |
| 5.5.4.14 | 0 | 04/14/2022 |
| 5.5.3.23 | 0 | 03/23/2022 |
| 5.5.3.15-beta | 0 | 03/16/2022 |
| 5.4.12.1 | 0 | 12/01/2021 |
| 5.4.10.29-beta | 0 | 10/29/2021 |
| 5.3.10.1-beta | 0 | 10/01/2021 |
| 5.3.7.20-beta | 0 | 07/21/2021 |
| 5.3.6.22 | 0 | 06/22/2021 |
| 5.3.5.11-beta | 0 | 05/11/2021 |
| 5.3.3.9-beta | 0 | 03/10/2021 |
| 5.2.2.16 | 0 | 02/17/2021 |
| 5.2.2.10 | 0 | 02/10/2021 |
| 5.2.2.5-beta | 0 | 02/05/2021 |
| 5.0.10.23 | 0 | 10/23/2020 |
| 4.5.6.17 | 0 | 06/17/2020 |
| 4.4.4.8 | 0 | 04/09/2020 |
| 4.3.3.5 | 0 | 03/05/2020 |
| 4.2.1.24 | 0 | 01/24/2020 |
| 4.0.11.12 | 0 | 11/12/2019 |
| 4.0.10.28 | 0 | 10/25/2019 |
| 3.8.6.28 | 0 | 06/29/2019 |
| 3.7.4.3 | 0 | 04/04/2019 |
| 3.6.12.4 | 0 | 12/05/2018 |
| 3.6.11.20 | 0 | 11/19/2018 |
| 3.5.9.26 | 0 | 09/26/2018 |
| 3.4.8.29 | 0 | 08/29/2018 |
| 3.4.8.20 | 0 | 08/20/2018 |
| 3.4.8.14 | 0 | 08/14/2018 |
| 3.3.3.26 | 0 | 03/26/2018 |
| 3.2.2.16 | 0 | 02/16/2018 |
| 3.1.1.3 | 0 | 12/26/2017 |
| 3.0.12.12 | 0 | 12/13/2017 |
| 2.5.3.3 | 0 | 03/03/2017 |
| 2.4.12.23 | 0 | 01/05/2017 |