tags:

views:

38

answers:

4

I have a PDF which is nothing but some form , for example, i have employeesheet as PDF form which is not editable.

i want to make this editable using any Java PDF api..

it would highly appreciated if you give me an solution.

Thanks

+1  A: 

Look into Apache PDFBox.

bmargulies
A: 

Checkout http://itextpdf.com/

Kumar225
A: 

iText can do this - but why would you want to do this from code? Just create the form in Acrobat or open office and be done with it. If you are trying to populate the form from a database or something, then iText would definitely be the tool for you, but adding and manipulating form elements is best done with a GUI tool.

Kevin Day
A: 

Make sure the PDF actually contains form elements. Otherwise you can do very limited editing.

mark stephens