2

I want to create my custom dynamic XFA pdf form using iText or PDFBox.

For example, purchase order form given here, Populate dynamic XFA pdf form itext

I want to generate such PDF form using java library. How can I achieve this?

Community
  • 1
  • 1
Nirav Patel
  • 1,304
  • 2
  • 13
  • 30
  • As @Bruno already answered, there is no highlevel support for creating XFA forms in iText or PDFBox. On the other hand the XFA specification is public. Thus, you can try and generate the XML manually and inject this XML. Doing so should be possible using either lib. – mkl Aug 07 '15 at 10:28

1 Answers1

2

No, the creation of XFA documents is not supported using iText or PDFBox. There are plans to start a project that would allow you to create XDP templates at iText Group, but there is no ETA as to when it will be ready.

Bruno Lowagie
  • 75,994
  • 9
  • 109
  • 165