-
Notifications
You must be signed in to change notification settings - Fork 66
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
Can not flatten the PDF #23
Comments
flatten field data as text and remove form fields (NOT YET SUPPORTED BY FPDM) You need to have pdftk |
It's supported by fpdm if you have pdftk, but it would be nice to have it as pure PHP. |
I have installed pdftk but still |
Having the same problem. The call crashes the page. Seems to make the PDF file a ""call" Fatal error: Uncaught Error: Call to undefined function |
I generate a new PDF with the filled data but Firefox can not render it correctly so i tried to flatten the PDF so i used:
$pdf = new FPDM('pattern.pdf'); $pdf->Load($fields, true); // second parameter: false if field values are in ISO-8859-1, true if UTF-8 //$pdf->Flatten(); $pdf->Merge(); $pdf->Output();
command which make unreadable the pdf in every platform.
The text was updated successfully, but these errors were encountered: