I am trying to convert a HTML file to PDF using wkhtmltopdf.

For that purpose I have installed wkhtmltopdf on a Debian box and am trying to run this command:

/usr/bin/xvfb-run -a -s "-screen 0 640x480x16" wkhtmltopdf /path/convert.1303714349.4961.html.tmp /path/convert.1303714349.4961.pdf.tmp

I get the following error:

Loading page (1/2)
Error: Failed loading page file:///path/convert.1303714349.4961.html.tmp (sometimes it will work just to ignore this error with --ignore-load-errors)

The file does exist in /path/convert.1303714349.4961.html.tmp, and the permissions are set correctly. Can it have anything to do with the path being prepended with file://?

link|improve this question

feedback

2 Answers

I believe wkhtmtopdf doesn't handle local files with non-typical extensions. Try renaming the input file to *.html.

See comment and issue at http://code.google.com/p/wkhtmltopdf/issues/detail?id=486#c5.

link|improve this answer
feedback

I haven't had any problem with "file://" paths on my Windows 7 box.

Did you try the advice in the error message, --igonore-load-errors?

link|improve this answer
Yes, didn't change anything. – phidah Apr 28 '11 at 15:25
feedback

Your Answer

 
or
required, but never shown

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