Aspose.Words 20.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Words --version 20.3.0
NuGet\Install-Package Aspose.Words -Version 20.3.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="20.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Words --version 20.3.0
#r "nuget: Aspose.Words, 20.3.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.
// Install Aspose.Words as a Cake Addin
#addin nuget:?package=Aspose.Words&version=20.3.0

// Install Aspose.Words as a Cake Tool
#tool nuget:?package=Aspose.Words&version=20.3.0

.NET API for Word File Formats

Aspose.Words for .NET is a Word Document Processing API that allows the developers to work with Microsoft Word® documents without needing Office Automation.

It is a powerful on-premise class library that can be used for numerous document processing tasks, enabling the developers to enhance their own applications with feature such as, document generation, modification, conversion, rendering and printing without relying on Microsoft Word or automation.

Word API Features

  • Comprehensive document import and export with 35+ supported file formats.
  • High fidelity rendering of document pages - exactly like Microsoft Word would have rendered.
  • Rich object model that allows to generate, combine, modify, parse or otherwise examine loaded documents.
  • Programmatic access to formatting properties of all document elements.
  • .NET printing infrastructure to print documents.
  • Generate reports with Mail Merge that allows populating documents with data from various sources.
  • LINQ Reporting Engine to fetch data from databases, XML, JSON, OData, external documents and more.

New Features in Version 20.3.0

  • LINQ Reporting Engine - Option to fit the image within textbox bounds while maintaining ratio.
  • Ability to set different attributes of Shape inside IFieldMergingCallback.ImageFieldMerging.
  • FindReplaceOptions new properties.
  • Ability to get column of table by bookmark.
  • Implement color change for side faces.
  • Implement correct contour rendering for volume shapes.

For a detailed list of new features, enhancements as well as public API and backward incompatible changes, please visit Aspose.Words for .NET 20.3 Release Notes.

Read & Write Document Formats

Microsoft Word: DOC, DOCX, RTF, DOT, DOTX, DOTM, DOCM FlatOPC, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled OpenOffice: ODT, OTT WordprocessingML: WordML Web: HTML, MHTML Fixed Layout: PDF Text: TXT

Save Word Files As

Fixed Layout: XPS, OpenXPS, PostScript (PS) Images: TIFF, JPEG, PNG, BMP, SVG, EMF, GIF Web: HtmlFixed Others: PCL, EPUB, XamlFixed, XamlFlow, XamlFlowPack

Platform Independence

Aspose.Words for .NET API can be used to develop applications for a vast range of operating systems (Windows, Linux & Mac OS) and platforms. You can build both 32-bit and 64-bit applications including ASP.NET, WCF & 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 & Xamarin.Mac.

Getting Started with Aspose.Words for .NET

Are you ready to give Aspose.Words for .NET a try? Simply execute Install-Package Aspose.Words from 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 execute Update-Package Aspose.Words to get the latest version.

Using C# to Create a DOC File from Scratch

You can execute this snippet in your environment to see how Aspose.Words performs or check the GitHub Repository for other common usage scenarios.

// create a blank document
Document doc = new Document();
// the DocumentBuilder class provides members to easily add content to a 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. 
// the format to save as is inferred from the extension of the file name.
doc.Save(dir + "output.docx");

Using C# to Export DOC to EPUB Format

Aspose.Words for .NET allows you to convert Microsoft Word® formats into bytes, HTML, EPUB, MHTML and other file formats. Following snippet demonstrates the conversion of a DOC file to an EPUB file:

// load the document from disc
Document doc = new Document(dir + "template.doc");
// save the document in EPUB format
doc.Save(dir + "output.epub");

Using C# to Import PDF and Save as a DOCX File

The following code sample demonstrates, how you can import a PDF document into your .NET application and export it as a DOCX format file without the need to install the Microsoft Word®:

// Load the PDF document from directory
Document doc = new Document(dir + "input.pdf");

// Save the document in DOCX format
doc.Save(dir + "output.docx");

Product Page | Documentation | API Reference | Code Examples | Blog | 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. 
.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 was computed.  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 (48)

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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.

fion.modelerp.core

ModelErp

TrueSight

Package Description

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.4.0 2,774 4/3/2024
24.3.0 28,602 3/5/2024
24.2.0 60,538 2/5/2024
24.1.0 99,553 12/29/2023
23.12.0 83,765 12/4/2023
23.11.0 95,154 11/6/2023
23.10.0 208,517 10/6/2023
23.9.0 148,956 9/5/2023
23.8.0 164,243 8/6/2023
23.7.0 146,026 7/9/2023
23.6.0 174,350 6/6/2023
23.5.0 205,202 5/5/2023
23.4.0 171,683 4/4/2023
23.3.0 459,238 3/6/2023
23.2.0 205,466 2/2/2023
23.1.0 185,743 1/6/2023
22.12.0 319,319 12/1/2022
22.11.0 276,045 11/3/2022
22.10.0 301,594 10/6/2022
22.9.0 347,873 9/5/2022
22.8.0 372,054 8/2/2022
22.7.0 195,714 7/4/2022
22.6.0 218,834 6/3/2022
22.5.0 286,299 5/3/2022
22.4.0 157,400 4/1/2022
22.3.0 367,609 2/28/2022
22.2.0 202,500 2/2/2022
22.1.0 226,979 12/29/2021
21.12.0 179,638 12/8/2021
21.11.0 216,368 11/5/2021
21.10.0 242,715 10/7/2021
21.9.0 228,103 9/2/2021
21.8.0 285,508 8/3/2021
21.7.0 325,147 7/2/2021
21.6.0 281,985 6/3/2021
21.5.0 294,317 5/4/2021
21.4.0 155,893 4/1/2021
21.3.0 243,457 3/5/2021
21.2.0 245,335 2/3/2021
21.1.0 225,525 12/29/2020
20.12.0 341,573 12/4/2020
20.11.0 194,872 11/9/2020
20.10.0 143,970 10/6/2020
20.9.0 242,942 9/3/2020
20.8.0 191,730 8/4/2020
20.7.0 260,869 7/3/2020
20.6.0 301,656 6/3/2020
20.5.0 246,460 5/4/2020
20.4.0 192,044 4/3/2020
20.3.0 220,392 3/3/2020
20.2.0 229,441 2/4/2020
20.1.0 358,614 12/30/2019
19.12.0 174,583 12/5/2019
19.11.0 296,796 11/5/2019
19.10.0 173,628 10/4/2019
19.9.0 327,021 9/4/2019
19.8.0 130,528 8/9/2019
19.7.0 204,280 7/3/2019
19.6.0 144,017 6/3/2019
19.5.0 241,585 5/7/2019
19.4.0 236,736 4/2/2019
19.3.0 121,652 3/4/2019
19.2.0 261,521 2/1/2019
19.1.0 129,459 12/26/2018
18.12.0 247,805 12/4/2018
18.11.0 161,121 11/2/2018
18.10.0 141,393 10/3/2018
18.9.0 132,382 9/3/2018
18.8.0 79,308 8/1/2018
18.7.0 144,350 7/4/2018
18.6.0 236,830 6/1/2018
18.5.0 147,697 5/2/2018
18.4.0 77,321 4/2/2018
18.3.0 59,934 3/2/2018
18.2.0 61,564 2/1/2018
18.1.0 129,545 12/26/2017
17.12.0 102,052 12/6/2017
17.11.0 38,691 11/15/2017
17.10.0 59,900 10/9/2017
17.9.0 40,463 9/5/2017
17.8.0 153,901 8/6/2017
17.7.0 81,854 7/6/2017
17.6.0 44,033 6/6/2017
17.5.0 32,380 5/15/2017
17.4.0 52,143 4/4/2017
17.3.0 71,290 3/6/2017
17.2.0 89,995 2/6/2017
17.1.0 32,802 1/16/2017
16.12.0 62,863 12/11/2016
16.11.0 87,878 11/3/2016
16.10.0 53,704 10/12/2016
16.8.0 84,153 9/10/2016
16.7.0 67,461 8/9/2016
16.6.0 19,673 7/13/2016
16.5.0 36,781 6/23/2016
16.4.0 100,602 5/12/2016
16.3.0 30,986 4/11/2016
16.2.0 37,785 3/16/2016
16.1.0 142,414 2/3/2016
15.12.0 56,768 12/26/2015
15.11.0 25,169 12/5/2015
15.10.0 63,812 11/5/2015
15.9.0 50,041 10/12/2015
15.8.1 51,092 9/5/2015
15.7.0 181,273 8/7/2015
15.6.0 87,440 7/4/2015
15.5.0 22,601 6/7/2015
15.4.0 93,925 5/10/2015
15.3.0 16,362 4/2/2015
15.2.0 57,626 3/6/2015
15.1.0 25,523 2/8/2015
14.12.0 49,805 1/10/2015
14.11.0 29,019 12/8/2014
14.10.0 27,823 11/8/2014
14.9.0 14,321 10/17/2014
14.8.0 20,741 9/10/2014
14.7.0 17,848 8/7/2014
14.6.0 17,832 7/7/2014
14.5.0 71,849 6/3/2014
14.4.0 16,403 5/4/2014
14.3.0 8,409 4/7/2014
14.2.0 21,190 3/14/2014
14.1.0 59,593 2/10/2014
13.12.0 58,176 1/12/2014
13.11.0 33,995 12/10/2013
13.10.0 4,589 11/12/2013
13.9.0 114,459 10/9/2013
13.8.0 25,153 9/4/2013
13.7.0 38,639 8/4/2013
13.6.0 75,550 7/3/2013
13.5.0 10,974 6/4/2013
13.4.0 57,794 5/7/2013
13.3.0 27,695 4/3/2013
13.2.0 12,658 3/4/2013
13.1.0 30,920 2/3/2013
11.11.0 21,846 12/31/2012
11.10.0 43,432 12/4/2012
11.9.0 48,974 11/3/2012
11.8.0 68,853 10/7/2012
11.7.0 12,211 9/3/2012
11.6.0 7,491 8/2/2012
11.5.0 4,411 7/3/2012
11.4.0 22,740 6/4/2012
11.3.0 6,294 5/2/2012
11.2.0 10,921 4/10/2012
11.1.0 4,908 3/3/2012
11.0.0.1 3,994 2/16/2012
11.0.0 5,092 2/1/2012
10.8.0 39,449 1/24/2012

Some of the new features & enhancements:

- No separate dlls for Xamarin anymore.
- FindReplaceOptions class is extended with new properties.
- Implemented the correct rendering of the "Letterlike" symbols.
- Supported dynamic stretching of an image within textbox bounds preserving the ratio of the image for LINQ Reporting Engine.

Detailed release notes:

https://docs.aspose.com/display/wordsnet/Aspose.Words+for+.NET+20.3+Release+Notes