Reputation: 61
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
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