GroupDocs.Merger
20.12.0
GroupDocs.Merger for .NET allows you to merge documents and manipulate document structure across wide range of supported document types - PDF, DOCX/DOC, PPTX/PPT, XLSX/XLS, VSDX/VSD, ODT, ODS, ODP, HTML, EPUB and many others.
Merge several documents into one, split single document to multiple documents, reorder or replace document pages, change page orientation, manage document password and perform other manipulations with GroupDocs.Merger for .NET API.
Features:
* Document manipulations
- Join multiple documents of the same format into one document;
- Split source document to multiple resultant documents;
- Ability to add, update or remove document password;
* Document pages manipulations
- Join arbitrary pages from several source documents into single resultant document;
- Desired page numbers or ranges can be specified via additional method options;
- Move document page into another position within document;
- Remove specific pages or page ranges from document;
- Swap pages position within document;
- Extract pages from source document of known format to make new document with specific pages;
* Document pages transformations
- Rotate document pages;
- Change document pages orientation;
- Document rendering features;
- Render document pages as .png image.
Supported document formats:
* Portable Document Formats - PDF (PDF/A-1a, PDF/A-1b, PDF/A-2a), XPS;
* Microsoft Word documents - DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF, TXT;
* Microsoft Excel spreadsheets - XLS, XLSX, XLSM, XLSB, XLT, XLTM, XLAM, XLTX, CSV, TSV;
* Microsoft PowerPoint presentations - PPT, PPTX, PPS, PPSX;
* Microsoft Visio diagrams - VSDX, VSTX, VSTM, VSSX, VSSM, VSX, VTX, VDX, VSDM;
* Microsoft OneNote - ONE;
* Open Document formats - ODT, OTT, ODS, ODP, OTP;
* Ebook - EPUB.
For more details on the GroupDocs.Merger for .NET API, please visit product website at:
https://products.groupdocs.com/merger/net
Note: GroupDocs.Merger for .NET will run in evaluation mode. In order to test full features of the product, please request a free 30-day temporary license.
Install-Package GroupDocs.Merger -Version 20.12.0
dotnet add package GroupDocs.Merger --version 20.12.0
<PackageReference Include="GroupDocs.Merger" Version="20.12.0" />
paket add GroupDocs.Merger --version 20.12.0
Document Merger .NET API
This .NET on-premise API lets your apps perform merging, trimming, reordering, swapping and lots of other operations on document pages of various file formats.
Document Merger Processing Features
- Merge two or more documents into a single file.
- Join a specific or group of pages from various files into one document.
- Split a document into several resultant documents.
- Split document by providing specific page numbers.
- Split the document into several multiple page files by providing various page intervals.
- Specify exact line numbers to create its separate one-liner file.
- Change page position within a document.
- Remove single or multiple pages from the document.
- Remove several pages from a document based on the page number.
- Rotate the page to an angle of 90, 180, or 270 degrees.
- Swap the position of two pages within a document.
- Extract a specific page or a range of pages from the document.
- Change page orientation (portrait, landscape) of specific or all pages within a document.
- Set, update, or remove the document password.
- Obtain basic meta-information about the document.
- Generate image representation of the document pages.
- Ability to log document manipulation process information.
- Load document from local disk, stream, or from URL.
New Features & Enhancements 
This release offers some minor bug fixes. Please visit GroupDocs.Merger for .NET 20.12 Release Notes for the detailed notes.
Join & Split File Formats
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM, XLAM
Microsoft PowerPoint: PPT, PPTX, PPS, PPSX
Microsoft Visio: VSDX, VSDM, VSSX, VSSM, VSTX, VSTM, VDX, VSX, VTX
Microsoft OneNote: ONE
OpenOffice: ODT, OTT, ODP, OTP, ODS
Web: HTML, MHT
Portable: PDF, XPS
Text: TXT, ERR
Other: TEX, EPUB, CSV, TSV
Rotate Pages File Formats
Portable: PDF, XPS
Other: TEX, EPUB
Other Supported File Formats
GroupDocs.Merger for .NET supports the following file formats to trim page, move/remove page, swap page and change page orientation operations:
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM, XLAM
Microsoft PowerPoint: PPT, PPTX, PPS, PPSX
Microsoft Visio: VSDX, VSDM, VSSX, VSSM, VSTX, VSTM, VDX, VSX, VTX
Microsoft OneNote: ONE
OpenOffice: ODT, OTT, ODP, OTP, ODS
Web: HTML, MHT, MHTML
Portable: PDF, XPS
Text: TXT
Other: TEX, EPUB
Platform Independence
GroupDocs.Merger for .NET does not require any external software or third party tool to be installed. GroupDocs.Merger for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Merger for .NET
Are you ready to give GroupDocs.Merger for .NET a try? Simply execute Install-Package GroupDocs.Merger
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Merger assembly in your project. If you already have GroupDocs.Merger for .Net and want to upgrade it, please execute Update-Package GroupDocs.Merger
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Use C# to Join Specific Pages from Various Documents
string filePath = @"c:\sample.docx";
string filePath2 = @"c:\sample2.docx";
string filePathOut = @"c:\output\result.docx";
JoinOptions joinOptions = new JoinOptions(1, 4, RangeMode.OddPages);
using (Merger merger = new Merger(filePath, loadOptions))
{
merger.Join(filePath2, joinOptions);
merger.Save(filePathOut);
}
Swap Page Position within a Document via C# Code
string filePath = @"c:\sample.pptx";
string filePathOut = @"c:\output\result.pptx";
int pageNumber1 = 3;
int pageNumber2 = 6;
SwapOptions swapOptions = new SwapOptions(pageNumber2, pageNumber1);
using (Merger merger = new Merger(filePath))
{
merger.SwapPages(swapOptions);
merger.Save(filePathOut);
}
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Document Merger .NET API
This .NET on-premise API lets your apps perform merging, trimming, reordering, swapping and lots of other operations on document pages of various file formats.
Document Merger Processing Features
- Merge two or more documents into a single file.
- Join a specific or group of pages from various files into one document.
- Split a document into several resultant documents.
- Split document by providing specific page numbers.
- Split the document into several multiple page files by providing various page intervals.
- Specify exact line numbers to create its separate one-liner file.
- Change page position within a document.
- Remove single or multiple pages from the document.
- Remove several pages from a document based on the page number.
- Rotate the page to an angle of 90, 180, or 270 degrees.
- Swap the position of two pages within a document.
- Extract a specific page or a range of pages from the document.
- Change page orientation (portrait, landscape) of specific or all pages within a document.
- Set, update, or remove the document password.
- Obtain basic meta-information about the document.
- Generate image representation of the document pages.
- Ability to log document manipulation process information.
- Load document from local disk, stream, or from URL.
New Features & Enhancements 
This release offers some minor bug fixes. Please visit GroupDocs.Merger for .NET 20.12 Release Notes for the detailed notes.
Join & Split File Formats
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM, XLAM
Microsoft PowerPoint: PPT, PPTX, PPS, PPSX
Microsoft Visio: VSDX, VSDM, VSSX, VSSM, VSTX, VSTM, VDX, VSX, VTX
Microsoft OneNote: ONE
OpenOffice: ODT, OTT, ODP, OTP, ODS
Web: HTML, MHT
Portable: PDF, XPS
Text: TXT, ERR
Other: TEX, EPUB, CSV, TSV
Rotate Pages File Formats
Portable: PDF, XPS
Other: TEX, EPUB
Other Supported File Formats
GroupDocs.Merger for .NET supports the following file formats to trim page, move/remove page, swap page and change page orientation operations:
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM, RTF
Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM, XLAM
Microsoft PowerPoint: PPT, PPTX, PPS, PPSX
Microsoft Visio: VSDX, VSDM, VSSX, VSSM, VSTX, VSTM, VDX, VSX, VTX
Microsoft OneNote: ONE
OpenOffice: ODT, OTT, ODP, OTP, ODS
Web: HTML, MHT, MHTML
Portable: PDF, XPS
Text: TXT
Other: TEX, EPUB
Platform Independence
GroupDocs.Merger for .NET does not require any external software or third party tool to be installed. GroupDocs.Merger for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Merger for .NET
Are you ready to give GroupDocs.Merger for .NET a try? Simply execute Install-Package GroupDocs.Merger
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Merger assembly in your project. If you already have GroupDocs.Merger for .Net and want to upgrade it, please execute Update-Package GroupDocs.Merger
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Use C# to Join Specific Pages from Various Documents
string filePath = @"c:\sample.docx";
string filePath2 = @"c:\sample2.docx";
string filePathOut = @"c:\output\result.docx";
JoinOptions joinOptions = new JoinOptions(1, 4, RangeMode.OddPages);
using (Merger merger = new Merger(filePath, loadOptions))
{
merger.Join(filePath2, joinOptions);
merger.Save(filePathOut);
}
Swap Page Position within a Document via C# Code
string filePath = @"c:\sample.pptx";
string filePathOut = @"c:\output\result.pptx";
int pageNumber1 = 3;
int pageNumber2 = 6;
SwapOptions swapOptions = new SwapOptions(pageNumber2, pageNumber1);
using (Merger merger = new Merger(filePath))
{
merger.SwapPages(swapOptions);
merger.Save(filePathOut);
}
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.groupdocs.com/merger/net/groupdocs-merger-for-net-20-12-release-notes
Dependencies
-
.NETFramework 2.0
- No dependencies.
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- Microsoft.Win32.Registry (>= 4.7.0)
- Mono.Posix.NETStandard (>= 1.0.0)
- SkiaSharp (>= 1.68.1.1)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 4.7.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Reflection.Emit.ILGeneration (>= 4.7.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.7.0)
Used By
NuGet packages (2)
Showing the top 2 NuGet packages that depend on GroupDocs.Merger:
Package | Downloads |
---|---|
GroupDocs.Total
GroupDocs.Total for .NET is a compilation of every .NET API offered by GroupDocs. We compile it on a daily basis to ensure that it contains the most up to date versions of each of our .NET document manipulation APIs.
With GroupDocs.Total for .NET developers can use all our APIs with a single license. However, you can order any individual API as well. The APIs we offer include:
GroupDocs.Viewer
GroupDocs.Annotation
GroupDocs.Conversion
GroupDocs.Comparison
GroupDocs.Signature
GroupDocs.Assembly
GroupDocs.Metadata
GroupDocs.Search
GroupDocs.Parser
GroupDocs.Watermark
GroupDocs.Editor
GroupDocs.Merger
GroupDocs.Redaction
GroupDocs.Classification
GroupDocs.Total for .NET Documentation
https://docs.groupdocs.com/display/gdtotalproductfamily/GroupDocs.Total+for+.NET
Free support for GroupDocs.Total for .NET is provided on our support forum:
https://forum.groupdocs.com/
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
20.12.0 | 112 | 12/22/2020 |
20.11.0 | 143 | 11/24/2020 |
20.10.0 | 222 | 10/28/2020 |
20.9.0 | 225 | 9/16/2020 |
20.8.0 | 215 | 8/20/2020 |
20.7.0 | 208 | 7/27/2020 |
20.5.0 | 258 | 5/26/2020 |
20.4.0 | 390 | 4/22/2020 |
20.2.0 | 529 | 2/25/2020 |
20.1.0 | 286 | 1/28/2020 |
19.12.0 | 300 | 12/20/2019 |
19.11.0 | 420 | 11/12/2019 |
19.10.0 | 262 | 10/29/2019 |
19.9.0 | 224 | 9/26/2019 |
19.7.0 | 446 | 7/8/2019 |
19.6.0 | 265 | 6/7/2019 |
19.5.0 | 212 | 5/24/2019 |
19.4.0 | 283 | 4/9/2019 |
19.3.0 | 259 | 3/22/2019 |
19.2.0 | 231 | 2/25/2019 |
19.1.0 | 255 | 1/28/2019 |
18.11.0 | 277 | 11/21/2018 |
18.9.0 | 375 | 9/4/2018 |
18.7.0 | 400 | 7/5/2018 |
18.5.0 | 412 | 5/31/2018 |