.NET REST API to Process PDF in Cloud
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This Cloud SDK allows you to easily build cloud-based PDF creator, editor & converter apps in C#, ASP.NET, or other .NET languages for various cloud platforms.
PDF Processing Features
- Add PDF document's header & footer in text or image format.
- Add tables & stamps (text or image) to PDF documents.
- Append multiple PDF documents to an existing file.
- Work with PDF attachments, annotations, & form fields.
- Apply encryption or decryption to PDF documents & set a password.
- Delete all stamps & tables from a page or entire PDF document.
- Delete a specific stamp or table from the PDF document by its ID.
- Replace single or multiple instances of text on a PDF page or from the entire document.
- Extensive support for converting PDF documents to various other file formats.
- Extract various elements of PDF files & make PDF documents optimized.
Fixed Layout: PDF, PDF_A_3A, XPS
Vector: SVG
eBook: EPUB
LaTeX Typesetting: TeX
Forms Data: FDF, XFDF
Markup: HTML, XML
Save PDF As
Microsoft Excel: XLS, XLSX
Microsoft PowerPoint: PPTX
Microsoft Word: DOC, DOCX
Image: JPEG, PNG, BMP, GIF, TIFF
eBook: MobiXML
Metafile: EMF
Prtiner Control: PCL
Postscript: PS
Formatting Objects: XSLFO
Markdown: MD
Web: MHT
Get Started
You do not need to install anything to get started with Aspose.PDF Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.PDF-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.PDF assembly in your project. If you already have Aspose.PDF Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.PDF-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Convert PDF
to EPUB
Docuemnt using C# Code
// For complete examples, please visit https://github.com/aspose-pdf-cloud/aspose-pdf-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(MyClientSecret, MyClientId);
var apiInstance = new PdfApi(configuration);
// Convert PDF to Epub
apiInstance.GetPdfInStorageToEpub("sample-file.pdf", folder: "ConvertedPDFs");
Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial