Frends.Community.Netum

You can install either task via Frends UI Task View or NuGet Package Manager
Merge multiple PDF files into a single document.
| Property |
Type |
Description |
Example |
| PageBytes |
List<byte[]> |
List of PDF file contents as byte arrays |
File.ReadAllBytes("file1.pdf") |
| Property |
Type |
Description |
Example |
| OutputFileBytes |
byte[] |
Merged PDF file as byte array |
result.OutputFileBytes |
Split PDF files into individual pages as separate documents.
| Property |
Type |
Description |
Example |
| Path |
string |
Full path to PDF file |
"C:\temp\doc.pdf" |
| Property |
Type |
Description |
Example |
| Output |
List<byte[]> |
List of split pages as byte arrays |
result.Output[0] |
git clone https://github.com/FrendsPlatform/Frends.Community.Netum.git
cd Frends.Community.Netum
# Build both packages
dotnet pack Frends.Community.PdfMerge --configuration Release
dotnet pack Frends.Community.PdfSplitter --configuration Release
- This project is licensed under the MIT License - see the LICENSE file for details
- Uses PdfSharp library for PDF manipulation
| Version |
Date |
Task |
Description |
| 1.0.0 |
2025-06-11 |
PdfMerge |
Initial version of MergePDF |
| 1.1.0 |
2026-06-26 |
PdfMerge |
Cleanup |
| 1.0.0 |
2026-04-17 |
PdfSplitter |
Initial version of SplitPages |