Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pdftk fill_form utf8 problems [duplicate]

Tags:

php

pdf

pdftk

fpdf

fdf

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

I am using pdftk to fill template pdf with data from fdf. Data has correct utf-8 characters, but when I use fill_form, resulting pdf file has formating errors. (I am NOT using flatten)

I have problems with letters like š, đ, č, ć, ž.

Thanks.

UPDATE My solution

In the end, I gave up on pdftk, I ended up using fpfd, to be more precise, I used this script. I had couple of problems here too, related to the pdf file. But I used pdftk to fix that pdf (as was suggested in the script itself), and in the end it helped me: it filled the pdf form I had with the characters without messing them up.

like image 374
mitric Avatar asked Jan 23 '13 08:01

mitric


1 Answers

pdftk (as of v1.44) can't handle chars outside the standard ASCII with FDF form fill. Someone did try to modify pdftk to allow multi-byte characters to support Asian languages, but from the comments I'm not sure it actually works.

http://blog.rubypdf.com/2007/07/19/pdftk-supports-chinese-path-now/

Related Questions:

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

pdftk + xfdf + php can't handle umlauts

like image 127
WebChemist Avatar answered Nov 03 '22 02:11

WebChemist