Aspose.Words
24.3.0
See the version list below for details.
dotnet add package Aspose.Words --version 24.3.0
NuGet\Install-Package Aspose.Words -Version 24.3.0
<PackageReference Include="Aspose.Words" Version="24.3.0" />
paket add Aspose.Words --version 24.3.0
#r "nuget: Aspose.Words, 24.3.0"
// Install Aspose.Words as a Cake Addin #addin nuget:?package=Aspose.Words&version=24.3.0 // Install Aspose.Words as a Cake Tool #tool nuget:?package=Aspose.Words&version=24.3.0
Word Document Processing .NET API
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | 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.
This package 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, 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.
Please note: our library implies the use of .NET programming languages, compatible with CLI infrastructure. If you require a corresponding native library for C++, you can download it from here. The Python version you can download from here.
Functionality
- Provides comprehensive document import and export with 35+ supported file formats. This allows developers to convert documents from one file format to another. For example, you can convert PDF to Word and Word to PDF documents with professional quality.
- Provides full access to all Word and OpenOffice document elements, including formatting properties and styling.
- Provides high-fidelity rendering of Word documents to PDF, JPG, PNG and other imaging formats.
- Provides the ability to print OpenOffice and Word documents programmatically."
- Supports powerful Report Generation with Mail Merge functionality, which allows creating documents dynamically using templates and data sources.
- Contains a flexible LINQ Reporting Engine, designed to fetch data from databases, XML, JSON, OData, external documents.
- Provides a rich set of utility functions, you can use to split a document into parts, join documents together, compare documents, and much more.
To become familiar with the most popular Aspose.Words functionality, please have a look at our free online applications.
Supported Platforms
Microsoft Windows | Linux | macOS | Mobile |
---|---|---|---|
Windows 2003 Server (x64, x86) | Ubuntu | macOS version 10.9 (Mavericks) | Android |
Windows 2008 Server (x64, x86) | OpenSUSE | and others | iOS |
Windows 2012 Server (x64, x86) | CentOS | ||
Windows 2012 R2 Server (x64, x86) | and others | ||
Windows 2016 Server (x64, x86) | |||
Windows 2019 Server (x64, x86) | |||
Windows XP (x64, x86) | |||
Windows Vista (x64, x86) | |||
Windows 10/11 (x64, x86) and others |
Supported Formats
Read and Write Formats
Microsoft Word: DOC, DOT, DOCX, DOTX, DOTM, FlatOpc, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled, RTF, Microsoft Word 2003 WordprocessingML
OpenDocument: ODT, OTT
Web: HTML, MHTML
Markdown: MD
Fixed Layout: PDF
Text: TXT
eBook: AZW3, EPUB, MOBI, CHM
Read-Only Formats
Microsoft Word: DocPreWord60
Other: XML (XML Document)
Write-Only Formats
Fixed Layout: XPS, OpenXps
PostScript: PS, EPS
Printer: PCL
Markup: XamlFixed, HtmlFixed, XamlFlow, XamlFlowPack
Image: SVG, TIFF, PNG, BMP, JPEG, GIF
Metafile: EMF
Other: XLSX
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 want to upgrade to the latest package version, please run Update-Package Aspose.Words
.
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 DocumentBuilder instance to add content to the file.
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 it 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 DocumentBuilder instance to add content to the file.
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 it as a PDF file.
pdf.Save(dir + "OutputDocument.pdf");
Convert a Word document to HTML with C#
You can convert Microsoft Word to PDF, XPS, Markdown, HTML, JPEG, TIFF, and other file formats. The following snippet demonstrates the conversion from DOCX to HTML:
// Load a Word file from the local drive.
Document doc = new Document(dir + "InputWordDocument.docx");
// Save it 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 file into your .NET application and export it as a DOCX format file without the need to install Microsoft Word:
// Load a PDF file from the local drive.
Document pdf = new Document(dir + "InputDocument.pdf");
// Save it to DOCX format.
pdf.Save(dir + "OutputWordDocument.docx");
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.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 | 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. |
-
.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.88.6)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
net6.0
- Microsoft.Win32.Registry (>= 4.7.0)
- SkiaSharp (>= 2.88.6)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
NuGet packages (58)
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 |
|
SuperOffice.NetServer.Core
SuperOffice NetServer Core is SuperOffice's data access technology for new applications. This is for onsite installations with the same version. This also works with SuperOffice Online. |
|
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 |
---|---|
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
|
|
xhnbzdl/feishu-doc-export
飞书文档导出服务
|
|
aspose-pdf/Aspose.PDF-for-.NET
Aspose.PDF for .NET examples, plugins and showcase projects
|
Version | Downloads | Last updated |
---|---|---|
24.10.0 | 44,958 | 10/8/2024 |
24.9.0 | 68,496 | 9/9/2024 |
24.8.0 | 132,997 | 8/7/2024 |
24.7.0 | 115,272 | 7/8/2024 |
24.6.0 | 134,088 | 6/6/2024 |
24.5.0 | 154,385 | 5/3/2024 |
24.4.0 | 152,768 | 4/3/2024 |
24.3.0 | 129,001 | 3/5/2024 |
24.2.0 | 207,450 | 2/5/2024 |
24.1.0 | 240,012 | 12/29/2023 |
23.12.0 | 239,503 | 12/4/2023 |
23.11.0 | 214,668 | 11/6/2023 |
23.10.0 | 412,914 | 10/6/2023 |
23.9.0 | 265,327 | 9/5/2023 |
23.8.0 | 240,558 | 8/6/2023 |
23.7.0 | 196,184 | 7/9/2023 |
23.6.0 | 262,875 | 6/6/2023 |
23.5.0 | 291,561 | 5/5/2023 |
23.4.0 | 253,171 | 4/4/2023 |
23.3.0 | 606,230 | 3/6/2023 |
23.2.0 | 267,538 | 2/2/2023 |
23.1.0 | 271,537 | 1/6/2023 |
22.12.0 | 460,192 | 12/1/2022 |
22.11.0 | 396,800 | 11/3/2022 |
22.10.0 | 441,854 | 10/6/2022 |
22.9.0 | 398,453 | 9/5/2022 |
22.8.0 | 419,455 | 8/2/2022 |
22.7.0 | 227,696 | 7/4/2022 |
22.6.0 | 268,188 | 6/3/2022 |
22.5.0 | 344,279 | 5/3/2022 |
22.4.0 | 201,174 | 4/1/2022 |
22.3.0 | 430,192 | 2/28/2022 |
22.2.0 | 247,192 | 2/2/2022 |
22.1.0 | 260,969 | 12/29/2021 |
21.12.0 | 242,362 | 12/8/2021 |
21.11.0 | 253,882 | 11/5/2021 |
21.10.0 | 296,915 | 10/7/2021 |
21.9.0 | 269,361 | 9/2/2021 |
21.8.0 | 353,243 | 8/3/2021 |
21.7.0 | 364,746 | 7/2/2021 |
21.6.0 | 307,500 | 6/3/2021 |
21.5.0 | 331,591 | 5/4/2021 |
21.4.0 | 182,850 | 4/1/2021 |
21.3.0 | 286,102 | 3/5/2021 |
21.2.0 | 276,448 | 2/3/2021 |
21.1.0 | 253,741 | 12/29/2020 |
20.12.0 | 386,496 | 12/4/2020 |
20.11.0 | 229,095 | 11/9/2020 |
20.10.0 | 172,838 | 10/6/2020 |
20.9.0 | 273,517 | 9/3/2020 |
20.8.0 | 210,390 | 8/4/2020 |
20.7.0 | 285,491 | 7/3/2020 |
20.6.0 | 331,927 | 6/3/2020 |
20.5.0 | 274,175 | 5/4/2020 |
20.4.0 | 209,785 | 4/3/2020 |
20.3.0 | 263,552 | 3/3/2020 |
20.2.0 | 267,674 | 2/4/2020 |
20.1.0 | 392,829 | 12/30/2019 |
19.12.0 | 191,754 | 12/5/2019 |
19.11.0 | 349,687 | 11/5/2019 |
19.10.0 | 204,426 | 10/4/2019 |
19.9.0 | 370,278 | 9/4/2019 |
19.8.0 | 142,810 | 8/9/2019 |
19.7.0 | 226,532 | 7/3/2019 |
19.6.0 | 168,339 | 6/3/2019 |
19.5.0 | 294,384 | 5/7/2019 |
19.4.0 | 280,252 | 4/2/2019 |
19.3.0 | 130,507 | 3/4/2019 |
19.2.0 | 274,732 | 2/1/2019 |
19.1.0 | 143,601 | 12/26/2018 |
18.12.0 | 289,346 | 12/4/2018 |
18.11.0 | 172,396 | 11/2/2018 |
18.10.0 | 163,603 | 10/3/2018 |
18.9.0 | 160,957 | 9/3/2018 |
18.8.0 | 88,153 | 8/1/2018 |
18.7.0 | 164,563 | 7/4/2018 |
18.6.0 | 268,346 | 6/1/2018 |
18.5.0 | 189,618 | 5/2/2018 |
18.4.0 | 94,735 | 4/2/2018 |
18.3.0 | 71,934 | 3/2/2018 |
18.2.0 | 66,930 | 2/1/2018 |
18.1.0 | 147,757 | 12/26/2017 |
17.12.0 | 124,649 | 12/6/2017 |
17.11.0 | 45,810 | 11/15/2017 |
17.10.0 | 68,121 | 10/9/2017 |
17.9.0 | 44,246 | 9/5/2017 |
17.8.0 | 161,240 | 8/6/2017 |
17.7.0 | 88,691 | 7/6/2017 |
17.6.0 | 46,752 | 6/6/2017 |
17.5.0 | 36,935 | 5/15/2017 |
17.4.0 | 53,649 | 4/4/2017 |
17.3.0 | 74,403 | 3/6/2017 |
17.2.0 | 103,931 | 2/6/2017 |
17.1.0 | 36,687 | 1/16/2017 |
16.12.0 | 71,234 | 12/11/2016 |
16.11.0 | 93,981 | 11/3/2016 |
16.10.0 | 64,660 | 10/12/2016 |
16.8.0 | 95,058 | 9/10/2016 |
16.7.0 | 72,583 | 8/9/2016 |
16.6.0 | 20,374 | 7/13/2016 |
16.5.0 | 40,194 | 6/23/2016 |
16.4.0 | 112,456 | 5/12/2016 |
16.3.0 | 33,683 | 4/11/2016 |
16.2.0 | 41,484 | 3/16/2016 |
16.1.0 | 161,594 | 2/3/2016 |
15.12.0 | 69,542 | 12/26/2015 |
15.11.0 | 26,024 | 12/5/2015 |
15.10.0 | 67,276 | 11/5/2015 |
15.9.0 | 54,885 | 10/12/2015 |
15.8.1 | 59,306 | 9/5/2015 |
15.7.0 | 196,740 | 8/7/2015 |
15.6.0 | 94,401 | 7/4/2015 |
15.5.0 | 28,075 | 6/7/2015 |
15.4.0 | 98,488 | 5/10/2015 |
15.3.0 | 17,471 | 4/2/2015 |
15.2.0 | 61,486 | 3/6/2015 |
15.1.0 | 28,152 | 2/8/2015 |
14.12.0 | 58,479 | 1/10/2015 |
14.11.0 | 38,895 | 12/8/2014 |
14.10.0 | 33,549 | 11/8/2014 |
14.9.0 | 14,975 | 10/17/2014 |
14.8.0 | 30,989 | 9/10/2014 |
14.7.0 | 19,090 | 8/7/2014 |
14.6.0 | 20,526 | 7/7/2014 |
14.5.0 | 77,391 | 6/3/2014 |
14.4.0 | 18,406 | 5/4/2014 |
14.3.0 | 8,876 | 4/7/2014 |
14.2.0 | 25,229 | 3/14/2014 |
14.1.0 | 64,159 | 2/10/2014 |
13.12.0 | 62,620 | 1/12/2014 |
13.11.0 | 34,704 | 12/10/2013 |
13.10.0 | 4,816 | 11/12/2013 |
13.9.0 | 121,460 | 10/9/2013 |
13.8.0 | 27,697 | 9/4/2013 |
13.7.0 | 44,627 | 8/4/2013 |
13.6.0 | 84,531 | 7/3/2013 |
13.5.0 | 11,389 | 6/4/2013 |
13.4.0 | 74,569 | 5/7/2013 |
13.3.0 | 32,491 | 4/3/2013 |
13.2.0 | 15,270 | 3/4/2013 |
13.1.0 | 35,677 | 2/3/2013 |
11.11.0 | 22,453 | 12/31/2012 |
11.10.0 | 45,832 | 12/4/2012 |
11.9.0 | 53,371 | 11/3/2012 |
11.8.0 | 75,049 | 10/7/2012 |
11.7.0 | 14,691 | 9/3/2012 |
11.6.0 | 8,176 | 8/2/2012 |
11.5.0 | 4,636 | 7/3/2012 |
11.4.0 | 24,454 | 6/4/2012 |
11.3.0 | 6,668 | 5/2/2012 |
11.2.0 | 15,167 | 4/10/2012 |
11.1.0 | 5,149 | 3/3/2012 |
11.0.0.1 | 6,024 | 2/16/2012 |
11.0.0 | 5,507 | 2/1/2012 |
10.8.0 | 47,087 | 1/24/2012 |