Convert a LiveCycle Form back to an Acrobat Form

PDF Forms that were saved with Adobe LiveCycle cannot be programatically filled and flattened using most API's, like ActivePDF. However, you can convert your LiveCycle PDF form back into a static PDF.

1. Open the form in LiveCycle and save it as Adobe Static PDF form. (Example using Acrobat X Pro)



3. Remove extra XML data with the following command line. I copied the creditApplication.pdf file to the same folder.

"pdftk creditApplication.pdf output test.pdf drop_xfa"


4. Now you can open the form in Acrobat and rename the forms fields. By default, the conversion might append form[0] stuff to the field names, so I rename them.


5. Save the new PDF using "Save As". Choose "Adobe PDF Files, Optimized (*.pdf)" and in the optimizer window, make it compatible with Acrobat 4.0 and later.


6. You now have a form fillable PDF that you can use programatically and will flatten properly.

[gallery link="file" columns="4"]

Comments

  1. Thanks! This was exactly what I needed.

    ReplyDelete
  2. Absolutely PERFECT!!! Gotta love the internet and people willing to share info! THANK YOU!!!

    ReplyDelete

Post a Comment

Popular posts from this blog

Apple TV - Recover from nothing Take 2

Converting a MySQL database to SQLite on a Mac