2

I have one PDF which is editable(Form based/XFA). I need to get it's content in the form of text. What I have tried using iTextSharp.text.pdf is -

        var reader = new PdfReader(path);
        if (reader.AcroFields.Xfa.XfaPresent)
        {
            AcroFields af = reader.AcroFields;
            foreach (var item in af.Fields)
            {
                Console.WriteLine("{0}, {1}", item.Key, item.Value);                        
            }
        }

But by using this, I am not getting any content of that PDF file. Please Help.

Please find the sample PDF related to this question at - https://sendeyo.com/en/2f25e157a4

Use Adobe Reader in your system to view the proper content of this file.

Arpit Gupta
  • 1,209
  • 1
  • 22
  • 39

0 Answers0