The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I am trying to merge several pdf documents from disk in an UWP app. I keep getting an execption when saving to the stream. (System.NullReferenceException: 'Object reference not set to an instance of an object.'). Why doesn't this work??? I can see that
mergeDocument is valid and has the right pagecount etc.
PdfDocument mergeDocument = new PdfDocument();
foreach (StorageFile pdfFile in files)
{
PdfLoadedDocument loadedDocument = new PdfLoadedDocument();