Tagged Questions

5
votes
5answers
10k views

How do I enable saving of filled-in fields on a PDF form?

Some PDF forms can be saved, including all filled-in field data: Some others can not be saved, and all filled-in field data are lost: How do I enable saving of filled-in fields on my PDF form? ...
2
votes
0answers
179 views

Handling response after PDF AcroForms HTTP-POST

I want to inform the user that his HTML Form submission from a PDF file has been successful (or not). Now when I used the browser-plugin with adobe reader I could get a HTML response displayed withing ...
2
votes
4answers
196 views

Modify PDF Forms from a PHP site

We currently use PDForm to grab a blank pdf file (no values, just form fields and text) and list the form fields. We then query our database for the values which match those field names and create a ...
1
vote
1answer
91 views

How can I edit fields in pdf dynamically from Delphi code?

I have to update fields in pdf dynamically from Delphi code. Is it possible to classify a textbox from a checkbox in pdf file? If so, how to update from Delphi code? Is there any third party library ...
1
vote
2answers
180 views

Filling in a pdf form with aspose

I am trying to use Aspose to set the values of fields in a pdf. This pdf works fine in ITextSharp. That is the main frustration I am experiencing. Here's my code string outputPdf = ...
1
vote
1answer
323 views

Use PDFBox to fill out a PDF Form

I have a pdf with a form in it. I am trying to write a class that will take data from my database and automatically populate the fields in the form. I have already tried ITextSharp and their pricing ...
1
vote
2answers
406 views

How to fill out a PDF form and support multiple languages in iTextSharp?

I wanted to know if there is a way to support multiple languages when filling out a form field with iTextSharp. We need to support user’s filling out fields in English, European languages with ...
1
vote
3answers
318 views

Mutating PDF editable fields programatically

Out of tons of questions and answers here about manipulating PDF's with PHP, but none of them seem to fit my requirement. Programmatically, I want to be able to update the content of editable fields. ...
0
votes
1answer
187 views

Fill xfa pdf form using itext in java

I have to fill a pdf form (used to submit data online) which is having xfa fields and using iText for this. I am able to generate the reader-enabled pdf document but fields are not filled. Please ...
0
votes
1answer
263 views

Fill pdf form using itext in java having problems

I am using iText to fill pdf form, no error in console, but when i am opening the output pdf it is giving "Expected a dict object" and after it gives another message saying "This document enabled ...
0
votes
0answers
67 views

The PDF security settings are getting updated when downloaded using PHP

I had a PDF file on the linux server with form fields editable in the adobe reader. When the file is downloaded using PHP, the downloaded PDF is getting displayed with form fields non-editable. The ...
0
votes
1answer
221 views

Find existing PushbuttonField in PDF document using iText

I am using the Java iText library to manipulate form fields of a PDF document and have run into a simple problem. I am able to set properties of AcroFields that I retrieved from a PdfStamper object ...
0
votes
0answers
180 views

EzPDF Editable Text fields

I need these five fields to be editable in EzPDF ($pdf->ezText()) but haven't been able to find a command that will let me edit them after the PDF has been compiled. Is there a command that will ...
0
votes
1answer
186 views

How to fill out a pdf file programatically?

What techniques available to fill a pdf form automatically using external data and save them. I have to use data from a database to fill a template pdf and save a copy of it on disk with that data. ...
0
votes
3answers
419 views

Dynamically append number to PDF or make submit button change its URL based on that number

I'm serving up PDFs from a SQL db and presenting them in the browser. I'm trying to figure out a way to embed a number in the PDF dynamically so that the recordID for that PDFs SQL record is available ...