0

I have an application where I upload a PDF to echosign using its SOAP API. I wanted to know, How to add form fields at desired positions on the pdf programmatically.

Amogh Talpallikar
  • 11,754
  • 12
  • 71
  • 131

1 Answers1

0

I know this post is few months old, but in the past, I've used the java itext library (http://itextpdf.com/) to merge fields in an application into an updateable PDF file. Basically, you start out with an updateable PDF template. Then you clone the document and using the java itext library, you can stamp the clone file with the fields from your app.

Hope this helps!

Neo