Skip to content
Advertisement

PdfCopy and form values with iText: form values not visible

Chapter 6 of iText in action describes how to replicate a page using PdfSmartCopy / PdfCopy:

JavaScript

This works great, but on my newly created document, the values inside the form fields are not visible unless I click on it. If I open the PDF in Chrome I can see the form values.

Apparently from Editable .pdf fields disappear (but visible on field focus) after save with evince, it comes out that there is a Flag which needs to be set on the pdf.

JavaScript

Is there a way to do it with the current API, without using reflection or re-openin the pdf?

Advertisement

Answer

Please take a look at the updated FillDataSheet example on the iText web site. You’ll discover that the following line was added:

JavaScript

iText used to ignore this flag and always created appearances, even if the PDF explicitly said that no appearances needed to be created. More recent versions take the value of the flag into account and don’t create appearances in case the PDF says that no appearances are needed (which is probably the case in your PDF).

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement