🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

Aspose.Pdf-Cloud

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Aspose.Pdf-Cloud

New version of Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images. Aspose.PDF Cloud is well documented to help you create your solutions on different platforms. https://products.aspose.cloud/pdf/family/ Rich Set of Features Aspose.PDF Cloud features can be divided into three main areas: Conversions: High quality conversions PDF to formats XLS, XLSX, PPTX, DOC, DOCX, EPUB, HTML, TeX, MobiXML, XML, XPS, FDF, XFDF, PDF/A Rendering: Convert whole documents or pages to PDF, XPS or for server-side document generation. Also convert document pages to SVG, JPEG, EMF, PNG, BMP, GIF, TIFF images. Document Object Model: Programmatic access through a rich API to all document elements allows to create, modify, extract, copy, split, join, and replace document content. Aspose.PDF Cloud is designed to perform great. You can literally generate thousands of documents in minutes with Aspose.PDF Cloud and that involves opening a document, modifying content and formatting or populating it with data and saving it. Even most of the complex documents are opened and saved in fractions of a second. Free support for Aspose.PDF Cloud is provided on our support forum: https://forum.aspose.cloud/ and on StackOverflow: https://stackoverflow.com/questions/tagged/aspose.pdf

25.4.0
Version published
Maintainers
2
Created

Nuget Nuget GitHub license

.NET REST API to Process PDF in Cloud

Aspose.PDF Cloud is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.

Our Cloud SDKs are wrappers around REST API in various programming languages, allowing you to process documents in language of your choice quickly and easily, gaining all benefits of strong types and IDE highlights. This repository contains new generation SDKs for Aspose.PDF Cloud and examples.

These SDKs are now fully supported. If you have any questions, see any bugs or have enhancement request, feel free to reach out to us at Free Support Forums.

Extract Text & Images of a PDF document online https://products.aspose.app/pdf/parser.

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.

Read & Write PDF Formats

PDF, EPUB, HTML, TeX, SVG, XML, XPS, FDF, XFDF

Save PDF As

XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text

Read PDF Formats

MHT, PCL, PS, XSLFO, MD

Enhancements in Version 25.4

  • Add method for adding Stamp per page in batch.
  • A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.

Unit Tests

Aspose PDF SDK includes a suite of unit tests. These Unit Tests also serves as examples of how to use the Aspose PDF SDK.

Licensing

All Aspose.Pdf for Cloud SDKs are licensed under MIT License.

Dependencies

The DLLs included in the package may not be the latest version. We recommend using [NuGet] (https://docs.nuget.org/consume/installing-nuget) to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json

Convert PDF to Epub in .NET

	// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
	var config = new Configuration
	{
		ClientId = "MY_CLIENT_ID",
		ClientSecret = "MY_CLIENT_SECRET",
		ApiBaseUrl = baseUrl,
	};

	var pdfApi = new PdfApi(config);

	using (var file = File.OpenRead(Path.Combine(TestDataFolder, "sample.pdf")))
	{
		var response = pdfApi.UploadFile(Path.Combine(TempFolder, serverFileName), file);
	}
			
	var response = pdfApi.GetPdfInStorageToEpub("sample.pdf", folder: TempFolder);

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742

SelfHost Aspose.PDF Cloud

Create Configuration object with SelfHost = true and without ClientId and ClientSecret.

FAQs

Package last updated on 18 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts