pganesh21
pganesh21

Reputation: 61

how to convert filled pdf to fdf or xfdf file in c#

How to convert filled pdf to xml or fdf or xdfd file which is designed in Adobe livecycle designer 7.1 Starting point is most appreciable.

Upvotes: 1

Views: 2208

Answers (1)

Bobrovsky
Bobrovsky

Reputation: 14246

Try Docotic.Pdf library for your task.

The library can export forms data in FDF format. It only requires couple of lines of code

using (PdfDocument pdf = new PdfDocument("form.pdf"))
{
    pdf.ExportFdf("ExportedFdfData.fdf");
}

Disclaimer: I work as one of the developers of the library.

Upvotes: 0

Related Questions