# Aspose.Words-for-.NET **Repository Path**: VisualStudio/Aspose.Words-for-.NET ## Basic Information - **Project Name**: Aspose.Words-for-.NET - **Description**: No description available - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Word Processing API for .NET [Aspose.Words for .NET](https://products.aspose.com/words/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 Office Automation.
Directory | Description --------- | ----------- [Demos](https://github.com/aspose-words/Aspose.Words-for-.NET/blob/master/Demos) | Source code for live demos hosted at https://products.aspose.app/words/family. [Examples](https://github.com/aspose-words/Aspose.Words-for-.NET/tree/master/Examples) | A collection of .NET examples that help you learn and explore the API features. [Showcases](https://github.com/aspose-words/Aspose.Words-for-.NET/tree/master/Showcases) | Standalone ready-to-use applications that demonstrate some specific use cases. [Plugins](https://github.com/aspose-words/Aspose.Words-for-.NET/tree/master/Plugins) | Plugins that will demonstrate features of Aspose.Words for .NET. ## 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](https://docs.aspose.com/words/net/feature-overview/#supported-platforms) such as [Windows Azure](https://docs.aspose.com/words/net/windows-azure-platform/) & Xamarin. - Comprehensive document import and export with [35+ supported file formats](https://docs.aspose.com/words/net/supported-document-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](https://docs.aspose.com/words/net/split-a-document/) into parts or [compare two documents](https://docs.aspose.com/words/net/compare-documents/). - [High fidelity rendering](https://docs.aspose.com/words/net/rendering/) of document pages. - Ability to [print a document programmatically](https://docs.aspose.com/words/net/print-a-document-programmatically-or-using-dialogs/) using Aspose.Words and the XpsPrint API or via dialog boxes. - [Generate reports with Mail Merge](https://docs.aspose.com/words/net/mail-merge-and-reporting/), which allows filling in merge templates with data from various sources to create merged documents. - [LINQ Reporting Engine](https://docs.aspose.com/words/net/linq-reporting-engine/) to fetch data from databases, XML, JSON, OData, external documents, and much more. ## 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. ## Get 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. ## Create a DOC File from Scratch ```csharp // 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"); ``` ## Export DOC to EPUB Format ```csharp // load the document from disc Document doc = new Document(dir + "template.doc"); // save the document in EPUB format doc.Save(dir + "output.epub"); ``` ## Import PDF Document and Save As a DOCX ```csharp // load the PDF document from directory Document doc = new Document(dir + "input.pdf"); // save the document in DOCX format doc.Save(dir + "output.docx"); ``` [Home](https://www.aspose.com/) | [Product Page](https://products.aspose.com/words/net) | [Docs](https://docs.aspose.com/words/net/) | [Demos](https://products.aspose.app/words/family) | [API Reference](https://apireference.aspose.com/words/net) | [Examples](https://github.com/aspose-words/Aspose.Words-for-.NET) | [Blog](https://blog.aspose.com/category/words/) | [Free Support](https://forum.aspose.com/c/words) | [Temporary License](https://purchase.aspose.com/temporary-license)