Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
9k 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 ...
5
votes
4answers
2k 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 ...
1
vote
1answer
289 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
1answer
108 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.
0
votes
1answer
84 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
57 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, ...
0
votes
1answer
364 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 ...
0
votes
2answers
1k 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 ...