Hi,
We have a licensed version of V5 and I am trying to read the content from PDF (text content).Documentation is not sufficient on how to read the content from PDF (text content from PDF).Do you support the functionality?
Sharing my sample logic
PdfDocument reader = new PdfDocument(stream);
foreach(var page in reader.Pages)
{
foreach(var pdfContent in page.Contents)
{
//pdfContent.
Need a function to read the content from the page. }
}