.NET REST API for Cloud Document Processing
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This cloud SDK provides seamless integration of cloud document processing & manipulation features into your cloud-based C#, ASP.NET & other .NET apps.
Document Processing Features
- Programmatically create new documents of various file formats.
- Fetch a web page via its URL and save it in Microsoft Word file format.
- Get document information, by default, in JSON/XML representation.
- Fetch statistical data of a document.
- Render complex elements (table, DrawingObject, etc.) of the document in supported formats.
- Remove all macros contained in a specific document.
- Convert a document to the desired file format along with detailed settings.
- Convert an encrypted PDF document into MS Word document format.
- So many more features.
Microsoft Word: DOC, DOT, DOCX, DOCM, DOTX, DOTM, WordML, RTF
OpenOffice: ODT, OTT
OpenOffice XML: FlatOpc, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled
Text: TXT
Markdown: MD
Fixed Layout: PDF
Save Document As
Fixed Layout: XPS, OpenXPS (Ecma-388), XamlFixed, HtmlFixed
Vector Graphics: SVG
PostScript: PS
Printing Control: PCL
eBook: EPUB
Markup (Beta): XamlFlow, XamlFlowPack
Images: TIFF, PNG, BMP, JPEG, GIF
Vector Metafile: EMF
eBook: MOBI, CHM
Get Started
You do not need to install anything to get started with Aspose.Words Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.Words-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Words assembly in your project. If you already have Aspose.Words Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.Words-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Create a DOCX
File using REST API
// for complete examples, please visit https://github.com/aspose-words-cloud/aspose-words-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var configuration = new Configuration {
ClientId = MyClientId,
ClientSecret = MyClientSecret
};
var apiInstance = new WordsApi(configuration);
// Create request
var request = new CreateDocumentRequest {
FileName = "New-Document.docx",
Folder = "WordDocs",
Storage = "First"
};
// Create new word DOCX document
var response = apiInstance.CreateDocument(request);
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial