-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple API for generating FDF files #12
Comments
Hmm... That is the first time I hear about FDF. Do you have examples of FDF files? Any ideas how the API should look like? (NOTE: described in PDF Reference, section 12.7.7.2) |
It's the end of the year, and I needed to file some paperwork. PDF forms use FDF. I used http://www.skatteverket.se/funktioner/sok/sok.4.64a656d113f4c7597011b3.html?query=form&searchTab=0 |
@alexanderkjeldaas I downloaded few PDF files from your URL, and they have PDF forms. But I have no idea what to do with them. How to produce FDF file from PDF form? How FDF files are used? What software can be used to read them? What "simple API" you means? Sorry so so many questions, but I really have no idea what FDF file are for. |
I think the following link describes it pretty well. |
@alexanderkjeldaas Thank you, now it makes more sense. Will simple "writeFDF :: Handle -> HashMap Text (Object ()) -> IO ()" function work for you? It requires handle to write to and a map from field name to PDF object. |
As I understand it, a FDF file is a very simple PDF file with one object containing key/value pairs.
I'm really after populating PDF forms, where generating FDF files is one aspect.
The text was updated successfully, but these errors were encountered: