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 appropriate headers, etc.
The XFDF file points to a password-protected PDF, which is the generic PDF form that uses the XFDF data to fill in ...
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 fine and poplulates the form correctly.
Below is the XFDF code as well as the header I am using...
Any idea why PDF doesnt display it rig...
Hi everyone,
I have a pdf file with a submit button. This sends the information using XFDF to an asp.net handler. There, I can get the data but I can't avoid the Adobe Reader message "An error occurred during the submit process. Cannot process content of type". The thing is, the pdf app is working as a client for my ASP.NET app, so I ne...
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 the job easily within php:
exec("pdftk template.pdf fill_form fieldData.xfdf output flatFile.pdf flatten");
Unfortunately this does not wor...