Aspose.Words
20.6.0
See the version list below for details.
dotnet add package Aspose.Words --version 20.6.0
NuGet\Install-Package Aspose.Words -Version 20.6.0
<PackageReference Include="Aspose.Words" Version="20.6.0" />
paket add Aspose.Words --version 20.6.0
#r "nuget: Aspose.Words, 20.6.0"
// Install Aspose.Words as a Cake Addin #addin nuget:?package=Aspose.Words&version=20.6.0 // Install Aspose.Words as a Cake Tool #tool nuget:?package=Aspose.Words&version=20.6.0
.NET API for Various Document Formats
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
- 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 in Version 20.6
Font.EmphasisMark
is exposed to the public.- Added a new public property
ImportFormatOptions.IgnoreHeaderFooter
. MarkdownSaveOptions
class is introduced.- Provided options to control
JSON
simple values’ recognition forLINQ
Reporting Engine.
Public API and Backward Incompatible Changes
- Added a new public class
MarkdownSaveOptions
. - Added a new public property
Font.EmphasisMark
. - Added a new public property
ImportFormatOptions.IgnoreHeaderFooter
. - Added a new public property
MarkdownSaveOptions.TableContentAlignment
. - PDF version 1.5 is marked as obsolete.
For the detailed notes, please visit Aspose.Words for .NET 20.6 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
Ready to give Aspose.Words for .NET a try? Simply run 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 run 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 | Docs | Demos | API Reference | Examples | Blog | 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 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 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 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 (>= 1.68.1.1)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
NuGet packages (59)
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.11.0 | 2,473 | 11/11/2024 |
24.10.0 | 64,667 | 10/8/2024 |
24.9.0 | 75,611 | 9/9/2024 |
24.8.0 | 142,409 | 8/7/2024 |
24.7.0 | 121,126 | 7/8/2024 |
24.6.0 | 140,043 | 6/6/2024 |
24.5.0 | 159,589 | 5/3/2024 |
24.4.0 | 157,143 | 4/3/2024 |
24.3.0 | 132,805 | 3/5/2024 |
24.2.0 | 214,305 | 2/5/2024 |
24.1.0 | 244,124 | 12/29/2023 |
23.12.0 | 244,346 | 12/4/2023 |
23.11.0 | 218,907 | 11/6/2023 |
23.10.0 | 419,337 | 10/6/2023 |
23.9.0 | 269,957 | 9/5/2023 |
23.8.0 | 243,570 | 8/6/2023 |
23.7.0 | 198,094 | 7/9/2023 |
23.6.0 | 266,147 | 6/6/2023 |
23.5.0 | 294,536 | 5/5/2023 |
23.4.0 | 255,835 | 4/4/2023 |
23.3.0 | 611,541 | 3/6/2023 |
23.2.0 | 269,903 | 2/2/2023 |
23.1.0 | 275,036 | 1/6/2023 |
22.12.0 | 465,643 | 12/1/2022 |
22.11.0 | 402,511 | 11/3/2022 |
22.10.0 | 446,385 | 10/6/2022 |
22.9.0 | 400,831 | 9/5/2022 |
22.8.0 | 421,243 | 8/2/2022 |
22.7.0 | 230,446 | 7/4/2022 |
22.6.0 | 270,670 | 6/3/2022 |
22.5.0 | 346,810 | 5/3/2022 |
22.4.0 | 202,793 | 4/1/2022 |
22.3.0 | 433,149 | 2/28/2022 |
22.2.0 | 249,096 | 2/2/2022 |
22.1.0 | 262,420 | 12/29/2021 |
21.12.0 | 244,636 | 12/8/2021 |
21.11.0 | 255,718 | 11/5/2021 |
21.10.0 | 298,783 | 10/7/2021 |
21.9.0 | 271,121 | 9/2/2021 |
21.8.0 | 356,700 | 8/3/2021 |
21.7.0 | 366,363 | 7/2/2021 |
21.6.0 | 308,317 | 6/3/2021 |
21.5.0 | 333,017 | 5/4/2021 |
21.4.0 | 184,015 | 4/1/2021 |
21.3.0 | 287,777 | 3/5/2021 |
21.2.0 | 277,721 | 2/3/2021 |
21.1.0 | 254,864 | 12/29/2020 |
20.12.0 | 387,495 | 12/4/2020 |
20.11.0 | 230,780 | 11/9/2020 |
20.10.0 | 174,227 | 10/6/2020 |
20.9.0 | 274,952 | 9/3/2020 |
20.8.0 | 211,038 | 8/4/2020 |
20.7.0 | 286,737 | 7/3/2020 |
20.6.0 | 333,294 | 6/3/2020 |
20.5.0 | 275,087 | 5/4/2020 |
20.4.0 | 210,656 | 4/3/2020 |
20.3.0 | 264,305 | 3/3/2020 |
20.2.0 | 269,153 | 2/4/2020 |
20.1.0 | 393,889 | 12/30/2019 |
19.12.0 | 192,422 | 12/5/2019 |
19.11.0 | 351,846 | 11/5/2019 |
19.10.0 | 205,560 | 10/4/2019 |
19.9.0 | 372,190 | 9/4/2019 |
19.8.0 | 143,238 | 8/9/2019 |
19.7.0 | 227,595 | 7/3/2019 |
19.6.0 | 169,512 | 6/3/2019 |
19.5.0 | 296,322 | 5/7/2019 |
19.4.0 | 282,234 | 4/2/2019 |
19.3.0 | 130,989 | 3/4/2019 |
19.2.0 | 275,348 | 2/1/2019 |
19.1.0 | 144,301 | 12/26/2018 |
18.12.0 | 290,541 | 12/4/2018 |
18.11.0 | 172,982 | 11/2/2018 |
18.10.0 | 164,599 | 10/3/2018 |
18.9.0 | 162,112 | 9/3/2018 |
18.8.0 | 88,836 | 8/1/2018 |
18.7.0 | 165,554 | 7/4/2018 |
18.6.0 | 269,832 | 6/1/2018 |
18.5.0 | 190,740 | 5/2/2018 |
18.4.0 | 95,415 | 4/2/2018 |
18.3.0 | 72,431 | 3/2/2018 |
18.2.0 | 67,184 | 2/1/2018 |
18.1.0 | 148,443 | 12/26/2017 |
17.12.0 | 125,777 | 12/6/2017 |
17.11.0 | 46,240 | 11/15/2017 |
17.10.0 | 68,292 | 10/9/2017 |
17.9.0 | 44,378 | 9/5/2017 |
17.8.0 | 161,452 | 8/6/2017 |
17.7.0 | 88,982 | 7/6/2017 |
17.6.0 | 46,829 | 6/6/2017 |
17.5.0 | 37,091 | 5/15/2017 |
17.4.0 | 53,731 | 4/4/2017 |
17.3.0 | 74,546 | 3/6/2017 |
17.2.0 | 104,567 | 2/6/2017 |
17.1.0 | 36,826 | 1/16/2017 |
16.12.0 | 71,695 | 12/11/2016 |
16.11.0 | 94,196 | 11/3/2016 |
16.10.0 | 64,942 | 10/12/2016 |
16.8.0 | 95,601 | 9/10/2016 |
16.7.0 | 72,708 | 8/9/2016 |
16.6.0 | 20,428 | 7/13/2016 |
16.5.0 | 40,273 | 6/23/2016 |
16.4.0 | 112,828 | 5/12/2016 |
16.3.0 | 33,813 | 4/11/2016 |
16.2.0 | 41,562 | 3/16/2016 |
16.1.0 | 162,283 | 2/3/2016 |
15.12.0 | 69,880 | 12/26/2015 |
15.11.0 | 26,054 | 12/5/2015 |
15.10.0 | 67,430 | 11/5/2015 |
15.9.0 | 55,073 | 10/12/2015 |
15.8.1 | 59,758 | 9/5/2015 |
15.7.0 | 197,936 | 8/7/2015 |
15.6.0 | 94,693 | 7/4/2015 |
15.5.0 | 28,201 | 6/7/2015 |
15.4.0 | 98,686 | 5/10/2015 |
15.3.0 | 17,565 | 4/2/2015 |
15.2.0 | 61,733 | 3/6/2015 |
15.1.0 | 28,297 | 2/8/2015 |
14.12.0 | 58,740 | 1/10/2015 |
14.11.0 | 39,240 | 12/8/2014 |
14.10.0 | 33,827 | 11/8/2014 |
14.9.0 | 15,003 | 10/17/2014 |
14.8.0 | 31,585 | 9/10/2014 |
14.7.0 | 19,153 | 8/7/2014 |
14.6.0 | 20,602 | 7/7/2014 |
14.5.0 | 77,510 | 6/3/2014 |
14.4.0 | 18,624 | 5/4/2014 |
14.3.0 | 8,881 | 4/7/2014 |
14.2.0 | 25,347 | 3/14/2014 |
14.1.0 | 64,314 | 2/10/2014 |
13.12.0 | 62,760 | 1/12/2014 |
13.11.0 | 34,713 | 12/10/2013 |
13.10.0 | 4,816 | 11/12/2013 |
13.9.0 | 121,554 | 10/9/2013 |
13.8.0 | 27,768 | 9/4/2013 |
13.7.0 | 44,926 | 8/4/2013 |
13.6.0 | 84,895 | 7/3/2013 |
13.5.0 | 11,396 | 6/4/2013 |
13.4.0 | 75,421 | 5/7/2013 |
13.3.0 | 32,730 | 4/3/2013 |
13.2.0 | 15,450 | 3/4/2013 |
13.1.0 | 35,790 | 2/3/2013 |
11.11.0 | 22,483 | 12/31/2012 |
11.10.0 | 45,900 | 12/4/2012 |
11.9.0 | 53,557 | 11/3/2012 |
11.8.0 | 75,150 | 10/7/2012 |
11.7.0 | 14,794 | 9/3/2012 |
11.6.0 | 8,193 | 8/2/2012 |
11.5.0 | 4,640 | 7/3/2012 |
11.4.0 | 24,480 | 6/4/2012 |
11.3.0 | 6,672 | 5/2/2012 |
11.2.0 | 15,397 | 4/10/2012 |
11.1.0 | 5,153 | 3/3/2012 |
11.0.0.1 | 6,185 | 2/16/2012 |
11.0.0 | 5,517 | 2/1/2012 |
10.8.0 | 47,230 | 1/24/2012 |