VOOZH about

URL: https://products.groupdocs.cloud/merger/net

⇱ .NET Cloud SDK | Merger Cloud API | Combine and Split Documents


👁 GroupDocs.Merger Cloud SDK for .NET
GroupDocs.Merger
Cloud SDK for .Net

GitHub Learn Buy

GroupDocs.Merger Cloud API provides a solution to merge and split documents of all common business formats. Supported file types include PDF, Microsoft Word documents, Excel spreadsheets, PowerPoint presentations, plain and formatted text, and a long list of supported document formats. Merger API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. Manually writing client code can be difficult, error-prone and time-consuming, therefore, we have provided and supports SDKs in many development languages in order to make it easier to communicate with the Cloud Merger API. Using the SDK for .NET, it will hide the REST API calls and will let the developers use GroupDocs.Merger Cloud API features in a native way for your .NET application.

  • At a
    Glance
  • Supported
    File Formats
  • Platform
    Independence

An overview of the features supported by the document merger Cloud API.‎

  • Join multiple pages
  • Split document
  • Document pages preview
  • Change page order
  • Change page orientation
  • Extract pages
  • Remove pages
  • Rotate pages
  • Swap any two pages
  • Add document password
  • Update document password
  • Remove document password
  • Check document for password
  • Combine multiple documents

Document merger Cloud API for .NET supported formats.

  • Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM
  • Excel: XLS, XLSX, XLSM, XLSB, XLT, XLTM, XLTX
  • PowerPoint: PPT, PPTX, PPS, PPSX
  • Visio: VDX, VSDX, VSDM, VSX, VSSX, VSSM, VTX, VSTX, VSTM
  • OneNote: ONE
  • OpenDocument Formats: ODT, OTT, ODP, OTP, ODS
  • Fixed Layout: PDF, XPS
  • Text: TXT, RTF, CSV, TSV
  • Web: HTML, MHT
  • LaTex: TEX
  • eBook: EPUB

Supported Operating Systems and Frameworks

Document Merger REST API Features

Combine multiple pages, slides or spreadsheets into a single document

Swap position of any two pages, slides or sheets within a document

Rotate pages by setting rotation angles like 90, 180 or 270 degrees

Split any document into smaller files

Remove any single or collection of specific pages

Change page orientation

Rearrange pages, slides or diagrams

Set, reset & remove password

Fetch list of supported file formats

Merge multiple documents

Using GroupDocs.Merger Cloud API, you can combine two or more documents into one, or split any document into multiple smaller documents. Following few lines of code shows how to merge two PDF documents in C# .NET.

Merge PDF documents - C# .NET

 //Get your App SID and App Key at https://dashboard.groupdocs.cloud (free registration is required).
 var configuration = new Configuration(MyAppSid, MyAppKey);
 var apiInstance = new DocumentApi(configuration);
 var item1 = new JoinItem
 {
 FileInfo = new FileInfo
 {
 FilePath = "foldername/doc1.pdf"
 }
 };
 var item2 = new JoinItem
 {
 FileInfo = new FileInfo
 {
 FilePath = "foldername/doc2.pdf"
 }
 };
 var options = new JoinOptions
 {
 JoinItems = new List { item1, item2 },
 OutputPath = "output/joinedDoc.pdf"
 };
 var request = new JoinRequest(options);
 var response = apiInstance.Join(request);

Support and Learning Resources

Start Free Trial
Download GitHub Repository

GroupDocs.Merger Cloud also offers individual document merger SDKs for other languages as listed below:

👁 GroupDocs.Merger Cloud for cURL
GroupDocs.Merger
Cloud for cURL

👁 GroupDocs.Merger Cloud SDK for Java
GroupDocs.Merger
Cloud SDK for Java

👁 GroupDocs.Merger Cloud SDK for PHP
GroupDocs.Merger
Cloud SDK for PHP

👁 GroupDocs.Merger Cloud SDK for Python
GroupDocs.Merger
Cloud SDK for Python

👁 GroupDocs.Merger Cloud SDK for Ruby
GroupDocs.Merger
Cloud SDK for Ruby

👁 GroupDocs.Merger Cloud SDK for Node.js
GroupDocs.Merger
Cloud SDK for Node.js

👁 GroupDocs.Merger Cloud SDK for Android
GroupDocs.Merger
Cloud SDK for Android

6e87ee2