XFDF is the XML version of the "Forms Data Format (FDF)" specification. It is designed to representing form data and annotations that are contained in a PDF form.

learn more… | top users | synonyms

1
vote
0answers
74 views

How can I show a PDF in a browser when it has XFDF data?

I need to show a PDF file with data, this data is a XFDF file. So the process works in my machine I open the XFDF and automatically the PDF appears with a data. The problem is when I make this ...
0
votes
1answer
71 views

How to read xfdf fields in PHP - from submitted PDF

I am submiting a PDF form (xfdf format) to a php script. Then php saves the file (xfdf) & emails (as an attachment) to some email. I would like to be able to extract two fields from xfdf file ...
0
votes
0answers
54 views

Fill pdf with xfdf data

I have some xfdf data as shown here and i need to fill an editable pdf in PHP. Can anyone give me a solution ? <?xml version="1.0" encoding="UTF-8"?> <xfdf xmlns="http://ns.adobe.com/xfdf/" ...
2
votes
3answers
89 views

How can I convert a row with many columns to a table with two columns (fieldname and value) and many rows?

Since I hate asking for specific solutions, here's the background for my question in case I'm approaching it the wrong way. Skip to the bold line if you want to skip the background and get right to ...
1
vote
0answers
106 views

XFDF URL reference to PDF form not working

I'm populating a PDF form using XFDF. The XFDF is produced by my Java webapp. I want to reference the PDF form from XFDF using a URL because I want form templates to be stored on the server. The form ...
0
votes
1answer
64 views

How do I get IDs “original” and “modified” for XFDF using iText?

The last tag in an XFDF file looks something like this: <ids original="20639838865717E80D2556CB7B2AEC2D" modified="754C78B10C9159419708446C3395CDBE"/> I can get these values by ...
0
votes
1answer
125 views

acrobat pdf - characters UTF8 encoding in xfdf data

The solution looks like this: There is a submit button below the form in PDF file. Submit button is sending XFDF form data through POST. When I generate (in PHP) XFDF file from POST data polish ...
1
vote
0answers
123 views

acrobat pdf submit button for forms - fields order in xfdf

My solution: User opens PDF file on web server in browser. User is entering form fields and pushing submit button. Submit button sends XFDF data through POST to my PHP script. When I get POST data, ...
0
votes
0answers
37 views

How can I read the contents of an XFDF file in Nokogiri, enter values, and then save the output? [closed]

I have a set of XFDF files generated from PDF forms. What I'd like to do is populate these XFDF files (which have all empty values for the form fields) with data, and then save them to a new file. I ...
1
vote
2answers
660 views

pdftk + xfdf + php can't handle umlauts

I'm using XFDF files to fill out PDF-forms serverside with PHP and pdftk but my problem is that no non-english characters (ä, ö, å etc.) are printed to the form fields. Here is the function I use to ...
0
votes
0answers
365 views

Using PDFTK with PHP, when PDF Form Submit -> Send Data to Server

I am trying to use a PDF Form, and submit data through it to my server. I have been playing with formats to submit the data to the server: IE: XFDF, FDF, HTML, Full PDF HTML give's you the array of ...
0
votes
1answer
174 views

How to trigger checkboxes with XFDF

Here is what I have: <?xml version="1.0" encoding="UTF-8"?> <xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve"> <fields> <field name="text1"> <value>First ...
0
votes
1answer
227 views

PDF Annotation property not changing properly

I've manually created a PDF fillable form file and filled it out using an existing xfdf file. When I try to do this programatically (creating the PDF fillable form on the fly to be filled out by ...
0
votes
1answer
467 views

Submit PDF to server as XFDF. What exactly is getting passed?

Ok so I followed this tutorial to get the PDF submitting to HTML but it seems like a backwards way to do it. http://koivi.com/fill-pdf-form-fields/tutorial.php I would like to submit the data as XML ...
0
votes
1answer
173 views

XFDF pdf opening in same window in IE

I'm working on a project that collects data from the project then displays it using xfdf to populate a .pdf file. Now when I use Chrome or Firefox it opens in a new tab which is exactly what I want, ...
1
vote
1answer
785 views

Opening FDF local works, but not on server

On my LOCALHOST, I have a form that creates and FDF file... Also in that file it includes a 'full-path' -> 'http://localhost/example/example.pdf'.... So when I 'click the link' to open the FDF file ...
1
vote
2answers
245 views

Is there a Nokogiri example code for parsing Acrobat XFDF?

I am looking for a ruby code snippet that shows use of Nokogiri to parse Acrobat XFDF data.
9
votes
6answers
4k views

Flatten FDF / XFDF forms to PDF in PHP with utf-8 characters

My scenario: A PDF template with formfields: template.pdf An XFDF file that contains the data to be filled in: fieldData.xfdf Now I need to have these to files combined & flattened. pdftk does ...
0
votes
1answer
475 views

Issue with opening XFDF PDf's from PGP program

I have a system that prepopulates PDF fields via XFDF. THe XFDF code seems fine, but when I try to open it with the header() in PHP, PDF fires an error. If I ignore it and refresh the page, it works ...
1
vote
3answers
2k views

merging XFDF with PDF form to create final PDF server-side?

This is what I have currently: User submits form data and gets a "download PDF" link. The link points to script which generates an XFDF file on the fly and outputs the XFDF file after setting the ...
11
votes
4answers
17k views

Merge FDF data into a PDF file using PHP

Is it possible to merge FDF data with a PDF file using PHP alone? Or is there no option but to use a 3rd party command line tool to achieve this? If that is the case can someone point me in the ...