Aspose.Words 21.9.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Words --version 21.9.0
                    
NuGet\Install-Package Aspose.Words -Version 21.9.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.Words" Version="21.9.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aspose.Words" Version="21.9.0" />
                    
Directory.Packages.props
<PackageReference Include="Aspose.Words" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aspose.Words --version 21.9.0
                    
#r "nuget: Aspose.Words, 21.9.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Aspose.Words@21.9.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aspose.Words&version=21.9.0
                    
Install as a Cake Addin
#tool nuget:?package=Aspose.Words&version=21.9.0
                    
Install as a Cake Tool

Word Document Processing .NET API

Version 21.9 Nuget

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

Aspose.Words for .NET is a class library that can be used by C#, F#, VB.NET developers for a variety of document processing tasks, including document generation, modification, converting, and rendering. Our library is self-sufficient and doesn't depend on any third-party software, such as Microsoft Word, OpenOffice, and similar office suites.

Aspose.Words for .NET can be used to develop applications for a vast range of operating systems (Windows, Linux, macOS, iOS, Android) and platforms such as Windows Azure, Xamarin.Android, or Xamarin.iOS & Xamarin.Mac. You can build both 32-bit and 64-bit software, including ASP.NET, WCF, and WinForms. Also, you can use our library via COM Interop from ASP, PHP, Perl, and Python programming languages.

Functionality

To become familiar with the most popular Aspose.Words functionality, please have a look at our free online applications.

Supported Document Formats

Read and Write Formats

Microsoft Word: DOC, DOT, DOCX, DOTX, DOTM, FlatOpc, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled, RTF, WordML
OpenDocument: ODT, OTT
Web: HTML, MHTML
Markdown: MD
Fixed Layout: PDF
Text: TXT

Read-Only Formats

Microsoft Word: DocPreWord60
eBook: MOBI, CHM

Write-Only Formats

Fixed Layout: XPS, OpenXps
PostScript: PS
Printer: PCL
eBook: EPUB
Markup: XamlFixed, HtmlFixed, XamlFlow, XamlFlowPack
Image: SVG, TIFF, PNG, BMP, JPEG, GIF
Metafile: EMF

Getting Started

So, you probably want to jump up and start coding your document processing application on C#, F# or Visual Basic right away? Let us show you how to do it in a few easy steps.

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, please run Update-Package Aspose.Words to get the latest version.

You can run the following code snippets in C# to see how our library works. Also feel free to check out the GitHub Repository for other common use cases.

Create a DOCX using C#

Aspose.Words for .NET allows you to create a blank Word document and add content to the file.

// Create a Word document.
Document doc = new Document();

// Use a document builder to add content to the document.
DocumentBuilder builder = new DocumentBuilder(doc);

// Write a new paragraph to the document.
builder.Writeln("This is an example of a Word document created in C#");

// Save the document as a DOCX file. The output format is automatically determined by the filename extension.
doc.Save(dir + "OutputWordDocument.docx");

Create a PDF in C#

Aspose.Words for .NET allows you to create a new PDF file and fill it with data.

// Create a PDF document.
Document pdf = new Document();

// Use a document builder to add content to the document.
DocumentBuilder builder = new DocumentBuilder(pdf);

// Write a new paragraph to the document.
builder.Writeln("This is an example of a PDF document created using C#");

// Save the document as a PDF file.
pdf.Save(dir + "OutputDocument.pdf");

Convert a Word document to HTML with C#

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 a Word document from the local drive.
Document doc = new Document(dir + "InputWordDocument.docx");

// Save the document to HTML format.
doc.Save(dir + "OutputHtmlDocument.html");

Import a PDF and save as a DOCX via C#

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 a PDF document from the local drive.
Document pdf = new Document(dir + "InputDocument.pdf");

// Save the document to DOCX format.
pdf.Save(dir + "OutputWordDocument.docx");

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 was computed.  net35-client is compatible.  net40 is compatible.  net40-client is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (61)

Showing the top 5 NuGet packages that depend on Aspose.Words:

Package Downloads
Ewl

The Enterprise Web Library (EWL), together with its tailored infrastructure platform, is a highly opinionated foundation for web-based enterprise software.

GroupDocs.Classification

GroupDocs.Classification for .NET is an easy to use library that allows performing sentiment analysis (classification), document classification, and raw text categorization. Features: * Classifies both raw text and documents with IAB-2, Documents, Sentiment, or Sentiment3 taxonomies. * Sentiment Analysis (Classification) supports Positive/Negative or Positive/Neutral/Negative taxonomies for English, Chinese, German, or Spanish languages. * Returns the probability of each class. Supported document formats: * Microsoft Word documents - DOC, DOT, DOCX, DOCM, DOTX, DOTM, TXT, RTF; * Open Document formats - ODP, ODS, ODT, OTT; * Portable Document Formats - PDF; For more details on the GroupDocs.Classification for .NET API, please visit GroupDocs website at: https://www.groupdocs.com/products/classification/net

Aspose.Words.Shaping.HarfBuzz

Aspose.Words.Shaping.HarfBuzz is a .NET wrapper around HarfBuzz shaping engine for use in Aspose.Words. Free support for Aspose.Words for .NET is provided on our support forum: https://forum.aspose.com/ and on StackOverflow: https://stackoverflow.com/questions/tagged/aspose.words

Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

fion.modelerp.core

ModelErp

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Aspose.Words:

Repository Stars
xhnbzdl/feishu-doc-export
飞书文档导出服务
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
aspose-pdf/Aspose.PDF-for-.NET
Aspose.PDF for .NET examples, plugins and showcase projects
Version Downloads Last Updated
25.7.0 10,674 7/7/2025
25.6.0 42,295 6/6/2025
25.5.0 58,648 5/7/2025
25.4.0 110,907 4/7/2025
25.3.0 105,013 3/6/2025
25.2.0 218,391 2/5/2025
25.1.0 233,321 1/6/2025
24.12.0 221,854 12/6/2024
24.11.1 185,627 11/14/2024
24.11.0 88,620 11/11/2024
24.10.0 341,451 10/8/2024
24.9.0 220,249 9/9/2024
24.8.0 339,410 8/7/2024
24.7.0 294,048 7/8/2024
24.6.0 285,878 6/6/2024
24.5.0 277,994 5/3/2024
24.4.0 259,789 4/3/2024
24.3.0 248,088 3/5/2024
24.2.0 343,283 2/5/2024
24.1.0 355,541 12/29/2023
23.12.0 400,851 12/4/2023
23.11.0 338,269 11/6/2023
23.10.0 511,300 10/6/2023
23.9.0 383,446 9/5/2023
23.8.0 345,218 8/6/2023
23.7.0 245,859 7/9/2023
23.6.0 364,888 6/6/2023
23.5.0 380,861 5/5/2023
23.4.0 321,422 4/4/2023
23.3.0 786,048 3/6/2023
23.2.0 330,263 2/2/2023
23.1.0 374,823 1/6/2023
22.12.0 573,994 12/1/2022
22.11.0 526,137 11/3/2022
22.10.0 576,957 10/6/2022
22.9.0 446,087 9/5/2022
22.8.0 456,570 8/2/2022
22.7.0 279,865 7/4/2022
22.6.0 311,966 6/3/2022
22.5.0 426,778 5/3/2022
22.4.0 257,542 4/1/2022
22.3.0 502,947 2/28/2022
22.2.0 303,592 2/2/2022
22.1.0 298,440 12/29/2021
21.12.0 308,274 12/8/2021
21.11.0 294,739 11/5/2021
21.10.0 340,488 10/7/2021
21.9.0 316,838 9/2/2021
21.8.0 448,177 8/3/2021
21.7.0 403,978 7/2/2021
21.6.0 333,577 6/3/2021
21.5.0 376,810 5/4/2021
21.4.0 217,944 4/1/2021
21.3.0 332,663 3/5/2021
21.2.0 316,324 2/3/2021
21.1.0 288,785 12/29/2020
20.12.0 423,296 12/4/2020
20.11.0 276,875 11/9/2020
20.10.0 217,898 10/6/2020
20.9.0 309,356 9/3/2020
20.8.0 235,495 8/4/2020
20.7.0 313,594 7/3/2020
20.6.0 377,562 6/3/2020
20.5.0 308,094 5/4/2020
20.4.0 229,759 4/3/2020
20.3.0 283,506 3/3/2020
20.2.0 318,140 2/4/2020
20.1.0 424,610 12/30/2019
19.12.0 253,844 12/5/2019
19.11.0 418,652 11/5/2019
19.10.0 240,547 10/4/2019
19.9.0 430,753 9/4/2019
19.8.0 164,213 8/9/2019
19.7.0 254,983 7/3/2019
19.6.0 198,526 6/3/2019
19.5.0 342,782 5/7/2019
19.4.0 334,479 4/2/2019
19.3.0 145,774 3/4/2019
19.2.0 294,187 2/1/2019
19.1.0 156,521 12/26/2018
18.12.0 326,285 12/4/2018
18.11.0 186,047 11/2/2018
18.10.0 191,503 10/3/2018
18.9.0 193,079 9/3/2018
18.8.0 101,301 8/1/2018
18.7.0 189,382 7/4/2018
18.6.0 303,404 6/1/2018
18.5.0 209,408 5/2/2018
18.4.0 112,268 4/2/2018
18.3.0 85,524 3/2/2018
18.2.0 75,403 2/1/2018
18.1.0 173,323 12/26/2017
17.12.0 159,069 12/6/2017
17.11.0 56,679 11/15/2017
17.10.0 72,664 10/9/2017
17.9.0 47,817 9/5/2017
17.8.0 167,651 8/6/2017
17.7.0 99,085 7/6/2017
17.6.0 49,115 6/6/2017
17.5.0 42,874 5/15/2017
17.4.0 55,692 4/4/2017
17.3.0 80,744 3/6/2017
17.2.0 122,100 2/6/2017
17.1.0 40,534 1/16/2017
16.12.0 82,689 12/11/2016
16.11.0 102,966 11/3/2016
16.10.0 76,445 10/12/2016
16.8.0 110,044 9/10/2016
16.7.0 114,648 8/9/2016
16.6.0 21,423 7/13/2016
16.5.0 47,796 6/23/2016
16.4.0 117,685 5/12/2016
16.3.0 37,783 4/11/2016
16.2.0 45,823 3/16/2016
16.1.0 188,447 2/3/2016
15.12.0 84,514 12/26/2015
15.11.0 27,294 12/5/2015
15.10.0 70,951 11/5/2015
15.9.0 60,317 10/12/2015
15.8.1 70,704 9/5/2015
15.7.0 208,465 8/7/2015
15.6.0 103,575 7/4/2015
15.5.0 29,874 6/7/2015
15.4.0 104,508 5/10/2015
15.3.0 22,462 4/2/2015
15.2.0 72,002 3/6/2015
15.1.0 31,842 2/8/2015
14.12.0 65,457 1/10/2015
14.11.0 53,151 12/8/2014
14.10.0 38,660 11/8/2014
14.9.0 16,165 10/17/2014
14.8.0 40,178 9/10/2014
14.7.0 21,210 8/7/2014
14.6.0 23,809 7/7/2014
14.5.0 84,138 6/3/2014
14.4.0 22,107 5/4/2014
14.3.0 9,388 4/7/2014
14.2.0 27,676 3/14/2014
14.1.0 68,971 2/10/2014
13.12.0 67,717 1/12/2014
13.11.0 35,839 12/10/2013
13.10.0 5,188 11/12/2013
13.9.0 127,022 10/9/2013
13.8.0 30,124 9/4/2013
13.7.0 52,310 8/4/2013
13.6.0 95,823 7/3/2013
13.5.0 11,963 6/4/2013
13.4.0 94,785 5/7/2013
13.3.0 38,117 4/3/2013
13.2.0 18,527 3/4/2013
13.1.0 39,828 2/3/2013
11.11.0 23,381 12/31/2012
11.10.0 48,184 12/4/2012
11.9.0 58,734 11/3/2012
11.8.0 80,026 10/7/2012
11.7.0 15,933 9/3/2012
11.6.0 9,310 8/2/2012
11.5.0 5,081 7/3/2012
11.4.0 26,379 6/4/2012
11.3.0 7,074 5/2/2012
11.2.0 20,660 4/10/2012
11.1.0 5,688 3/3/2012
11.0.0.1 10,634 2/16/2012
11.0.0 6,257 2/1/2012
10.8.0 52,459 1/24/2012