Aspose.Words
21.1.0
Aspose.Words for .NET is a Document Processing library that allows developers to work with documents in many popular formats without needing Office Automation. Users can perform a wide variety of document tasks, ranging from simply converting documents from one supported format to another and modifying these documents during the conversion process, to business-oriented tasks, such as creating structured and visually appealing documents or automating reporting with complex templates and data-bound fields.
See the version list below for details.
Install-Package Aspose.Words -Version 21.1.0
dotnet add package Aspose.Words --version 21.1.0
<PackageReference Include="Aspose.Words" Version="21.1.0" />
paket add Aspose.Words --version 21.1.0
#r "nuget: Aspose.Words, 21.1.0"
Aspose.Words for .NET is a powerful on-premise class library that can be used for numerous document processing tasks. It enables developers to enhance their own applications with features such as generating, modifying, converting, rendering, and printing documents, without relying on third-party applications, for example, Microsoft Word, or automation.
Word API Features
The following are some popular features of Aspose.Words for .NET:
- Aspose.Words can be used to develop applications for a vast range of operating systems such as Windows or Linux & Mac OS and platforms such as Windows Azure, Xamarin.Android, or Xamarin.iOS & Xamarin.Mac.
- Comprehensive document import and export with 35+ supported file formats. This allows users to convert documents from one popular format to another, for example, from DOCX into PDF or Markdown, or from PDF into various Word formats.
- Programmatic access to the formatting properties of all document elements. For example, using Aspose.Words users can split a document into parts or compare two documents.
- High fidelity rendering of document pages. For example, if it is needed to render a document as in Microsoft Word, Aspose.Words will successfully cope with this task.
- Ability to print a document programmatically using Aspose.Words and the XpsPrint API or via dialog boxes.
- Generate reports with Mail Merge, which allows filling in merge templates with data from various sources to create merged documents.
- LINQ Reporting Engine to fetch data from databases, XML, JSON, OData, external documents, and much more.
New Features & Enhancements 
- Support for “cold” rendering of
OOXML
SmartArt (Diagrams). - Added the ability to create Move revision.
- Added the
IImageSavingCallback
intoMarkdownSaveOptions
. - Added a field to the
Node
class so a User can store some custom meta-data in the Aspose.Words Document model. - Added the ability to bookmark the table’s column.
- Ability to get or set Cell Vertical Alignment using
TableStyle
. - Automatic pick of the default Icon of Inserted
OLE
Object in MS Word. - Added the
LastChild
property andAppendChild()
method to theStructuredDocumentRangeStart
class. - Improvements in the
URI
processing to handle relative hyperlink. - Convert Word to
JSON
in Parent-Child Hierarchy.
Please visit Aspose.Words for .NET 21.1 Release Notes for the detailed notes.
Read & Write Document Formats
Aspose.Words for .NET supports the following formats,
- DOC, DOCX, RTF, DOT, DOTX,
- ODT, OTT,
- PDF, XPS,
- HTML, MHTML, Markdown,
- JPEG, TIFF, PNG,
- and others.
For a complete list of formats supported by Aspose.Words, see the Supported Document Formats page.
Platform Independence
Aspose.Words for .NET API can be used to develop applications for a vast range of operating systems, such as Windows, Linux and Mac OS, and platforms. You can build both 32-bit and 64-bit applications, including ASP.NET, WCF, and WinForms. Aspose.Words for .NET can also be used via COM Interop from ASP, PHP, Perl, and Python.
You can also build applications with Mono, as well as on Windows Azure, Microsoft SharePoint, Microsoft Silverlight, Xamarin.Android, Xamarin.iOS, and Xamarin.Mac.
Getting Started with Aspose.Words for .NET
Ready to give Aspose.Words for .NET a try?
Simply run Install-Package Aspose.Words
from the Package Manager Console in Visual Studio to fetch the NuGet package.
If you already have Aspose.Words for .NET and want to upgrade the version, please run Update-Package Aspose.Words
to get the latest version.
You can run the following snippets in your environment to see how Aspose.Words works, or check out the GitHub Repository for other common use cases.
Using C# to Create a DOCX File from Scratch
Aspose.Words for .NET allows you to create a new blank document and add content to this document.
// Create a blank document.
Document doc = new Document();
// Use a document builder to add content to the document.
DocumentBuilder builder = new DocumentBuilder(doc);
// Write a new paragraph in the document with the text "Hello World!".
builder.Writeln("Hello World!");
// Save the document in DOCX format. Save format is automatically determined from the file extension.
doc.Save(dir + "output.docx");
Using C# to Convert a Word Document to HTML
Aspose.Words for .NET also allows you to convert Microsoft Word formats to PDF, XPS, Markdown, HTML, JPEG, TIFF, and other file formats. The following snippet demonstrates the conversion from DOCX to HTML:
// Load the document from the disc.
Document doc = new Document(dir + "TestDocument.docx");
// Save the document to HTML format.
doc.Save(dir + "output.html");
Using C# to Import PDF and Save as a DOCX File
In addition, you can import a PDF document into your .NET application and export it as a DOCX format file without the need to install Microsoft Word:
// Load the PDF document from the disc.
Document doc = new Document(dir + "TestDocument.pdf");
// Save the document to DOCX format.
doc.Save(dir + "output.docx");
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Aspose.Words for .NET is a powerful on-premise class library that can be used for numerous document processing tasks. It enables developers to enhance their own applications with features such as generating, modifying, converting, rendering, and printing documents, without relying on third-party applications, for example, Microsoft Word, or automation.
Word API Features
The following are some popular features of Aspose.Words for .NET:
- Aspose.Words can be used to develop applications for a vast range of operating systems such as Windows or Linux & Mac OS and platforms such as Windows Azure, Xamarin.Android, or Xamarin.iOS & Xamarin.Mac.
- Comprehensive document import and export with 35+ supported file formats. This allows users to convert documents from one popular format to another, for example, from DOCX into PDF or Markdown, or from PDF into various Word formats.
- Programmatic access to the formatting properties of all document elements. For example, using Aspose.Words users can split a document into parts or compare two documents.
- High fidelity rendering of document pages. For example, if it is needed to render a document as in Microsoft Word, Aspose.Words will successfully cope with this task.
- Ability to print a document programmatically using Aspose.Words and the XpsPrint API or via dialog boxes.
- Generate reports with Mail Merge, which allows filling in merge templates with data from various sources to create merged documents.
- LINQ Reporting Engine to fetch data from databases, XML, JSON, OData, external documents, and much more.
New Features & Enhancements 
- Support for “cold” rendering of
OOXML
SmartArt (Diagrams). - Added the ability to create Move revision.
- Added the
IImageSavingCallback
intoMarkdownSaveOptions
. - Added a field to the
Node
class so a User can store some custom meta-data in the Aspose.Words Document model. - Added the ability to bookmark the table’s column.
- Ability to get or set Cell Vertical Alignment using
TableStyle
. - Automatic pick of the default Icon of Inserted
OLE
Object in MS Word. - Added the
LastChild
property andAppendChild()
method to theStructuredDocumentRangeStart
class. - Improvements in the
URI
processing to handle relative hyperlink. - Convert Word to
JSON
in Parent-Child Hierarchy.
Please visit Aspose.Words for .NET 21.1 Release Notes for the detailed notes.
Read & Write Document Formats
Aspose.Words for .NET supports the following formats,
- DOC, DOCX, RTF, DOT, DOTX,
- ODT, OTT,
- PDF, XPS,
- HTML, MHTML, Markdown,
- JPEG, TIFF, PNG,
- and others.
For a complete list of formats supported by Aspose.Words, see the Supported Document Formats page.
Platform Independence
Aspose.Words for .NET API can be used to develop applications for a vast range of operating systems, such as Windows, Linux and Mac OS, and platforms. You can build both 32-bit and 64-bit applications, including ASP.NET, WCF, and WinForms. Aspose.Words for .NET can also be used via COM Interop from ASP, PHP, Perl, and Python.
You can also build applications with Mono, as well as on Windows Azure, Microsoft SharePoint, Microsoft Silverlight, Xamarin.Android, Xamarin.iOS, and Xamarin.Mac.
Getting Started with Aspose.Words for .NET
Ready to give Aspose.Words for .NET a try?
Simply run Install-Package Aspose.Words
from the Package Manager Console in Visual Studio to fetch the NuGet package.
If you already have Aspose.Words for .NET and want to upgrade the version, please run Update-Package Aspose.Words
to get the latest version.
You can run the following snippets in your environment to see how Aspose.Words works, or check out the GitHub Repository for other common use cases.
Using C# to Create a DOCX File from Scratch
Aspose.Words for .NET allows you to create a new blank document and add content to this document.
// Create a blank document.
Document doc = new Document();
// Use a document builder to add content to the document.
DocumentBuilder builder = new DocumentBuilder(doc);
// Write a new paragraph in the document with the text "Hello World!".
builder.Writeln("Hello World!");
// Save the document in DOCX format. Save format is automatically determined from the file extension.
doc.Save(dir + "output.docx");
Using C# to Convert a Word Document to HTML
Aspose.Words for .NET also allows you to convert Microsoft Word formats to PDF, XPS, Markdown, HTML, JPEG, TIFF, and other file formats. The following snippet demonstrates the conversion from DOCX to HTML:
// Load the document from the disc.
Document doc = new Document(dir + "TestDocument.docx");
// Save the document to HTML format.
doc.Save(dir + "output.html");
Using C# to Import PDF and Save as a DOCX File
In addition, you can import a PDF document into your .NET application and export it as a DOCX format file without the need to install Microsoft Word:
// Load the PDF document from the disc.
Document doc = new Document(dir + "TestDocument.pdf");
// Save the document to DOCX format.
doc.Save(dir + "output.docx");
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.aspose.com/words/net/aspose-words-for-net-21-1-release-notes
Dependencies
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.5 Client
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.0 Client
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETStandard 2.0
- Microsoft.Win32.Registry (>= 4.7.0)
- SkiaSharp (>= 2.80.1)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
Used By
NuGet packages (20)
Showing the top 5 NuGet packages that depend on Aspose.Words:
Package | Downloads |
---|---|
Ewl
The Enterprise Web Library (EWL), and its tailored infrastructure platform, are a complete and open solution for developing and operating web-based enterprise software.
|
|
Aspose.OCR
Aspose.OCR for .NET is a robust optical character recognition API.
Developers can easily add OCR functionalities in their applications.
API is extensible, easy to use, compact and provides a simple set of classes
for controlling character recognition.
|
|
Zny.Common.Document
文档操作库
|
|
iCom
iCom integrates a variety of specific operation classes, such as: Cookie, Items, Cache, Form, DbContext, DbDynamic, DbConn, SqlQuery, FileUtil, FileUpload, Crypto, BarCode, StringUtil, TypeConvert, SortList, DateUtil, RegexUtil, Environal, ReflectUtil, HttpClient, ImageUtil, XmlUtil, ZipPackage, WordUtil, ExcelUtil, PdfUtil, PinyinConvert, PdfToImageConverter, JsonConfig, XmlConfig, ObjectCopy, TagHelper, SkipUrlMiddleware and so on.
// HttpContext Called in the ConfigureServices method
services.AddContextAccessor();
// Called in the Configure method
app.UseHttpContext();
// EfCore Called in the ConfigureServices method
// Application Assembly
var assembly = Assembly.GetExecutingAssembly();
// Register Database Models
services.AddDbContext(assembly);
// Auto Update Database
services.AddMigrate();
// Register All Services
services.AddService(assembly);
|
|
AsposeWordsSupport
A supportive package for Aspose.Words
|
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Aspose.Words:
Repository | Stars |
---|---|
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
|
Version History
Version | Downloads | Last updated |
---|---|---|
21.2.0 | 12,249 | 2/3/2021 |
21.1.0 | 25,159 | 12/29/2020 |
20.12.0 | 33,040 | 12/4/2020 |
20.11.0 | 22,601 | 11/9/2020 |
20.10.0 | 36,230 | 10/6/2020 |
20.9.0 | 68,037 | 9/3/2020 |
20.8.0 | 59,178 | 8/4/2020 |
20.7.0 | 50,893 | 7/3/2020 |
20.6.0 | 70,189 | 6/3/2020 |
20.5.0 | 39,880 | 5/4/2020 |
20.4.0 | 54,674 | 4/3/2020 |
20.3.0 | 64,280 | 3/3/2020 |
20.2.0 | 60,369 | 2/4/2020 |
20.1.0 | 155,178 | 12/30/2019 |
19.12.0 | 51,439 | 12/5/2019 |
19.11.0 | 119,470 | 11/5/2019 |
19.10.0 | 64,660 | 10/4/2019 |
19.9.0 | 83,467 | 9/4/2019 |
19.8.0 | 65,169 | 8/9/2019 |
19.7.0 | 80,415 | 7/3/2019 |
19.6.0 | 57,667 | 6/3/2019 |
19.5.0 | 69,325 | 5/7/2019 |
19.4.0 | 99,452 | 4/2/2019 |
19.3.0 | 55,098 | 3/4/2019 |
19.2.0 | 118,022 | 2/1/2019 |
19.1.0 | 68,063 | 12/26/2018 |
18.12.0 | 25,872 | 12/4/2018 |
18.11.0 | 78,496 | 11/2/2018 |
18.10.0 | 66,600 | 10/3/2018 |
18.9.0 | 51,478 | 9/3/2018 |
18.8.0 | 43,804 | 8/1/2018 |
18.7.0 | 50,870 | 7/4/2018 |
18.6.0 | 79,648 | 6/1/2018 |
18.5.0 | 38,428 | 5/2/2018 |
18.4.0 | 37,287 | 4/2/2018 |
18.3.0 | 24,476 | 3/2/2018 |
18.2.0 | 29,104 | 2/1/2018 |
18.1.0 | 50,443 | 12/26/2017 |
17.12.0 | 39,834 | 12/6/2017 |
17.11.0 | 19,207 | 11/15/2017 |
17.10.0 | 40,913 | 10/9/2017 |
17.9.0 | 23,937 | 9/5/2017 |
17.8.0 | 88,532 | 8/6/2017 |
17.7.0 | 27,105 | 7/6/2017 |
17.6.0 | 32,105 | 6/6/2017 |
17.5.0 | 16,757 | 5/15/2017 |
17.4.0 | 38,867 | 4/4/2017 |
17.3.0 | 46,951 | 3/6/2017 |
17.2.0 | 42,934 | 2/6/2017 |
17.1.0 | 15,637 | 1/16/2017 |
16.12.0 | 27,358 | 12/11/2016 |
16.11.0 | 46,748 | 11/3/2016 |
16.10.0 | 33,792 | 10/12/2016 |
16.8.0 | 32,597 | 9/10/2016 |
16.7.0 | 34,251 | 8/9/2016 |
16.6.0 | 14,789 | 7/13/2016 |
16.5.0 | 19,379 | 6/23/2016 |
16.4.0 | 67,723 | 5/12/2016 |
16.3.0 | 14,706 | 4/11/2016 |
16.2.0 | 18,018 | 3/16/2016 |
16.1.0 | 66,234 | 2/3/2016 |
15.12.0 | 28,253 | 12/26/2015 |
15.11.0 | 18,890 | 12/5/2015 |
15.10.0 | 23,690 | 11/5/2015 |
15.9.0 | 19,244 | 10/12/2015 |
15.8.1 | 27,320 | 9/5/2015 |
15.7.0 | 110,988 | 8/7/2015 |
15.6.0 | 25,555 | 7/4/2015 |
15.5.0 | 9,034 | 6/7/2015 |
15.4.0 | 27,061 | 5/10/2015 |
15.3.0 | 10,541 | 4/2/2015 |
15.2.0 | 30,459 | 3/6/2015 |
15.1.0 | 15,168 | 2/8/2015 |
14.12.0 | 15,997 | 1/10/2015 |
14.11.0 | 6,261 | 12/8/2014 |
14.10.0 | 17,791 | 11/8/2014 |
14.9.0 | 7,531 | 10/17/2014 |
14.8.0 | 12,135 | 9/10/2014 |
14.7.0 | 11,028 | 8/7/2014 |
14.6.0 | 8,498 | 7/7/2014 |
14.5.0 | 27,918 | 6/3/2014 |
14.4.0 | 5,675 | 5/4/2014 |
14.3.0 | 5,611 | 4/7/2014 |
14.2.0 | 8,611 | 3/14/2014 |
14.1.0 | 36,163 | 2/10/2014 |
13.12.0 | 27,496 | 1/12/2014 |
13.11.0 | 28,726 | 12/10/2013 |
13.10.0 | 2,611 | 11/12/2013 |
13.9.0 | 26,538 | 10/9/2013 |
13.8.0 | 5,667 | 9/4/2013 |
13.7.0 | 18,491 | 8/4/2013 |
13.6.0 | 28,476 | 7/3/2013 |
13.5.0 | 5,828 | 6/4/2013 |
13.4.0 | 17,641 | 5/7/2013 |
13.3.0 | 10,299 | 4/3/2013 |
13.2.0 | 2,807 | 3/4/2013 |
13.1.0 | 11,330 | 2/3/2013 |
11.11.0 | 14,541 | 12/31/2012 |
11.10.0 | 11,714 | 12/4/2012 |
11.9.0 | 18,584 | 11/3/2012 |
11.8.0 | 8,716 | 10/7/2012 |
11.7.0 | 4,737 | 9/3/2012 |
11.6.0 | 5,281 | 8/2/2012 |
11.5.0 | 1,649 | 7/3/2012 |
11.4.0 | 7,950 | 6/4/2012 |
11.3.0 | 2,389 | 5/2/2012 |
11.2.0 | 1,454 | 4/10/2012 |
11.1.0 | 2,791 | 3/3/2012 |
11.0.0.1 | 1,358 | 2/16/2012 |
11.0.0 | 2,023 | 2/1/2012 |
10.8.0 | 7,103 | 1/24/2012 |