GroupDocs.Merger 20.1.0

.NET Standard 2.0 .NET Framework 2.0
There is a newer version of this package available.
See the version list below for details.
dotnet add package GroupDocs.Merger --version 20.1.0
NuGet\Install-Package GroupDocs.Merger -Version 20.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Merger" Version="20.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Merger --version 20.1.0
#r "nuget: GroupDocs.Merger, 20.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GroupDocs.Merger as a Cake Addin
#addin nuget:?package=GroupDocs.Merger&version=20.1.0

// Install GroupDocs.Merger as a Cake Tool
#tool nuget:?package=GroupDocs.Merger&version=20.1.0

Document Merger Features

  • Merge two or more documents into a single file.
  • Join 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 document to 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 document.
  • Remove several pages from a document based on page number.
  • Rotate page to an angle of 90, 180 or 270 degrees.
  • Swap position of two pages within a document.
  • Extract 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 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.

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 Other: TEX, EPUB, CSV, TSV

Supported File Formats for Page Rotation

Portable: PDF, XPS Other: TEX, EPUB

Supported File Formats for Page Manipulation

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 Portable: PDF, XPS Text: TXT Other: TEX, EPUB

Platform Independence

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

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#

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 | Documentation | API Reference | Code Samples | Blog | Free Support | Temporary License

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

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
23.3.1 603 3/16/2023
23.3.0 289 3/15/2023
22.12.0 2,365 12/19/2022
22.10.0 1,829 10/24/2022
22.7.0 5,978 7/27/2022
22.5.0 4,031 5/18/2022
22.4.0 3,845 4/25/2022
22.1.0 9,096 1/6/2022
21.8.0 9,806 8/19/2021
21.7.0 3,155 7/27/2021
21.6.0 3,045 6/23/2021
21.5.0 3,204 5/26/2021
21.3.0 7,360 3/29/2021
21.2.0 5,623 2/24/2021
20.12.0 8,996 12/22/2020
20.11.0 599 11/24/2020
20.10.0 5,412 10/28/2020
20.9.0 3,305 9/16/2020
20.8.0 5,367 8/20/2020
20.7.0 3,209 7/27/2020
20.5.0 9,631 5/26/2020
20.4.0 5,488 4/22/2020
20.2.0 10,312 2/25/2020
20.1.0 722 1/28/2020
19.12.0 2,776 12/20/2019
19.11.0 1,828 11/12/2019
19.10.0 644 10/29/2019
19.9.0 504 9/26/2019
19.7.0 1,038 7/8/2019
19.6.0 571 6/7/2019
19.5.0 537 5/24/2019
19.4.0 636 4/9/2019
19.3.0 563 3/22/2019
19.2.0 544 2/25/2019
19.1.0 618 1/28/2019
18.11.0 694 11/21/2018
18.9.0 850 9/4/2018
18.7.0 840 7/5/2018
18.5.0 895 5/31/2018