I'm using pdftk for flattening PDF files on server. For this purpose I use PHP. This is my code in PHP. Btw, I'm using this on WAMP.

passthru("pdftk editablepdf/jason.pdf output flattenpdf/flattened.pdf flatten");

The pdftk.exe file and the accompanying .dll file both exist in the www directory. editablepdf and flattenpdf are two separate directories in the www directory.

After executing the script and checking, i find the pdfs haven't been saved. When i tried running pdftk via command prompt, it worked fine. But the same is not happening here. Is it something that's gotta do with passthru??

Thanks and Regards Sameer

link|improve this question
Assuming this is Windows... Are you using IIS or Apache? – Brian Jul 18 '11 at 8:55
hi brian, i'm using Apache. Anyways i got around the problem. Just answered it. – Sameer Jul 20 '11 at 6:37
feedback

1 Answer

up vote 1 down vote accepted

was able to solve after looking around. Here's the working line -

passthru("pdftk editablepdf\\jason.pdf output flattenpdf\\flattened.pdf flatten");

Since \ acts as escape sequence character, i'm using "\ \" to denote the folder levels.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.