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 work with full utf-8 support. For example: Cyrillic and greek letters get scrambled. I used Arial for this, with an unicode character set.
- How can I accomplish to flatten my unicode files?
- Is there any other pdf tool that offers unicode support?
- Does pdftk have an unicode switch that I am missing?
EDIT: As this question has not been solved for more then 9 month, I decided to start a bounty for it. In case there are options to sponsor a feature or a bugfix in pdftk, I'd be glad to donate.