Unplanned
Last Updated: 19 Jul 2024 10:42 by Lucas
Lucas
Created on: 19 Jul 2024 10:42
Category: PdfProcessing
Type: Bug Report
1
PdfProcessing: NullReferenceException is thrown when Find API is used on a newly created document

NullReferenceException is thrown when Find API is used on a newly created document.

Workaround: Export - Import the document before using the Find API

PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
byte[] exportedDocument = pdfFormatProvider.Export(document);
document = pdfFormatProvider.Import(exportedDocument);

 

0 comments