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 Office Automation.
This repository contains Demos, Examples, Plugins and Showcases for Aspose.Words for .NET to help you learn and write your own applications.
Directory | Description |
---|---|
Examples | A collection of .NET examples that help you learn and explore the API features |
Showcases | Standalone ready-to-use applications that demonstrate some specific use cases |
Plugins | Plugins that will demonstrate one or more features of Aspose.Words for .NET |
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.
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
Fixed Layout: XPS, OpenXPS, PostScript (PS)\ Images: TIFF, JPEG, PNG, BMP, SVG, EMF, GIF\ Web: HtmlFixed\ Others: PCL, EPUB, XamlFixed, XamlFlow, XamlFlowPack
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.
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.
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");
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");
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 | Search | Free Support | Temporary License