pdfdj is a tool to merge and split PDF documents.
It is written and runs on .NET 8.0 .
It can be used from:
- PdfDJ.exe Windows Application (only on Windows OS)
- pdjc.exe/dll Console application (on Windows, Linux and Mac OS)
Download link: https://github.com/renzfe/pdfdj/releases
- Merge two PDF files into single document
- Split a single PDF document into multiple PDF files
PdfDJ is a Windows application to merge and split PDF documents.
- Run PdfDJ.exe
- Click Merge button
- Drag and drop the first file
- Drag and drop the second file
- Optionally drag and drop the output directory
- Click Merge button
- Run PdfDJ.exe
- Click Split button
- Drag and drop the file to split
- Select the page/s where to finish a document and start a new one
- Click Split button
pdjc is a Console Application to merge and split PDF documents.
On Windows OS:
pdjc.exe
merge
-i C:\temp\file1.pdf C:\temp\file2.pdf
-o C:\temp
On Linux or Mac OS:
dotnet pdjc.dll
merge
-i /tmp/file1.pdf /tmp/file2.pdf
-o /tmp
Options:
-i, --inputfiles Required. Input pdf files to be merged.
-o, --outputdirectory Required. Output directory where the merged file is created.
--help Display this help screen.
--version Display version information.
On Windows OS:
pdjc.exe
split
-i C:\temp\file.pdf
-o C:\temp
-p 2 3
On Linux or Mac OS:
dotnet pdjc.dll
split
-i /tmp/file.pdf
-o /tmp
-p 2 3
Options:
-i, --inputfile Required. Input pdf file to be splitted.
-o, --outputdirectory Required. Output directory where the splitted files are created.
-p, --pages Required. Pages where to split file.
--help Display this help screen.
--version Display version information.
The license of the project is the GNU General Public License v3.0.