GroupDocs.Merger
23.11.0
Prefix Reserved
See the version list below for details.
dotnet add package GroupDocs.Merger --version 23.11.0
NuGet\Install-Package GroupDocs.Merger -Version 23.11.0
<PackageReference Include="GroupDocs.Merger" Version="23.11.0" />
<PackageVersion Include="GroupDocs.Merger" Version="23.11.0" />
<PackageReference Include="GroupDocs.Merger" />
paket add GroupDocs.Merger --version 23.11.0
#r "nuget: GroupDocs.Merger, 23.11.0"
#:package GroupDocs.Merger@23.11.0
#addin nuget:?package=GroupDocs.Merger&version=23.11.0
#tool nuget:?package=GroupDocs.Merger&version=23.11.0
Document Merger .NET API
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
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.
Supported Join, Split & Trim 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, MHTML
Portable: PDF, XPS
Other: TEX, EPUB
Please visit the Supported Document Types page for the details.
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.
Get Started
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.
Join Specific Pages from Various DOCX Files
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 PPTX 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);
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- No dependencies.
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Win32.Registry (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.1)
- SkiaSharp (>= 2.88.3)
- System.Diagnostics.DiagnosticSource (>= 7.0.0)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 5.0.3)
- System.Reflection.Emit (>= 4.7.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Security.Cryptography.Pkcs (>= 6.0.3)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 7.0.0)
-
net6.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Microsoft.Win32.Registry (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.1)
- SkiaSharp (>= 2.88.3)
- System.Diagnostics.DiagnosticSource (>= 7.0.0)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 5.0.3)
- System.Reflection.Emit (>= 4.7.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Security.Cryptography.Pkcs (>= 6.0.3)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 25.11.0 | 164 | 11/28/2025 |
| 25.9.0 | 875 | 9/4/2025 |
| 25.7.0 | 492 | 7/29/2025 |
| 25.6.0 | 670 | 6/3/2025 |
| 25.5.0 | 424 | 5/14/2025 |
| 25.4.0 | 1,328 | 4/9/2025 |
| 25.3.0 | 1,793 | 3/19/2025 |
| 25.2.1 | 2,184 | 2/6/2025 |
| 25.2.0 | 1,130 | 2/4/2025 |
| 24.12.0 | 9,297 | 12/5/2024 |
| 24.11.0 | 2,085 | 11/19/2024 |
| 24.10.0 | 11,028 | 10/15/2024 |
| 24.9.0 | 1,480 | 9/17/2024 |
| 24.8.0 | 2,825 | 8/27/2024 |
| 24.7.0 | 5,667 | 7/15/2024 |
| 24.6.1 | 1,307 | 6/25/2024 |
| 24.6.0 | 1,844 | 6/3/2024 |
| 24.4.0 | 41,245 | 4/16/2024 |
| 24.3.0 | 10,539 | 3/26/2024 |
| 24.2.0 | 2,350 | 2/26/2024 |
| 24.1.0 | 5,400 | 1/23/2024 |
| 23.12.0 | 7,785 | 12/19/2023 |
| 23.11.0 | 9,450 | 11/22/2023 |
| 23.10.0 | 9,705 | 10/16/2023 |
| 23.9.0 | 21,052 | 9/19/2023 |
| 23.8.0 | 5,110 | 8/17/2023 |
| 23.5.0 | 7,328 | 5/30/2023 |
| 23.4.0 | 4,885 | 4/26/2023 |
| 23.3.1 | 6,509 | 3/16/2023 |
| 23.3.0 | 3,058 | 3/15/2023 |
| 22.12.0 | 9,715 | 12/19/2022 |
| 22.10.0 | 14,847 | 10/24/2022 |
| 22.7.0 | 17,758 | 7/27/2022 |
| 22.5.0 | 8,655 | 5/18/2022 |
| 22.4.0 | 9,254 | 4/25/2022 |
| 22.1.0 | 26,025 | 1/6/2022 |
| 21.8.0 | 21,064 | 8/19/2021 |
| 21.7.0 | 8,678 | 7/27/2021 |
| 21.6.0 | 8,167 | 6/23/2021 |
| 21.5.0 | 10,693 | 5/26/2021 |
| 21.3.0 | 27,128 | 3/29/2021 |
| 21.2.0 | 23,296 | 2/24/2021 |
| 20.12.0 | 42,331 | 12/22/2020 |
| 20.11.0 | 2,384 | 11/24/2020 |
| 20.10.0 | 23,281 | 10/28/2020 |
| 20.9.0 | 19,270 | 9/16/2020 |
| 20.8.0 | 32,752 | 8/20/2020 |
| 20.7.0 | 18,613 | 7/27/2020 |
| 20.5.0 | 59,600 | 5/26/2020 |
| 20.4.0 | 33,364 | 4/22/2020 |
| 20.2.0 | 62,726 | 2/25/2020 |
| 20.1.0 | 2,386 | 1/28/2020 |
| 19.12.0 | 32,364 | 12/20/2019 |
| 19.11.0 | 30,783 | 11/12/2019 |
| 19.10.0 | 2,437 | 10/29/2019 |
| 19.9.0 | 1,689 | 9/26/2019 |
| 19.7.0 | 2,291 | 7/8/2019 |
| 19.6.0 | 1,978 | 6/7/2019 |
| 19.5.0 | 1,606 | 5/24/2019 |
| 19.4.0 | 1,625 | 4/9/2019 |
| 19.3.0 | 1,594 | 3/22/2019 |
| 19.2.0 | 1,585 | 2/25/2019 |
| 19.1.0 | 1,608 | 1/28/2019 |
| 18.11.0 | 1,781 | 11/21/2018 |
| 18.9.0 | 2,081 | 9/4/2018 |
| 18.7.0 | 2,255 | 7/5/2018 |
| 18.5.0 | 2,334 | 5/31/2018 |
